diff --git a/locate/index.html b/locate/index.html index 1ca39b1..c543c49 100644 --- a/locate/index.html +++ b/locate/index.html @@ -14,6 +14,7 @@ integrity="sha512-GffPMF3RvMeYyc1LWMHtK8EbPv0iNZ8/oTtHPx9/cc2ILxQ+u905qIwdpULaqDkyBKgOaB57QTMg7ztg8Jm2Og==" crossorigin=""> +
@@ -21,7 +22,7 @@
Tile Layer:
Map Token:
@@ -57,6 +58,8 @@
@@ -95,9 +98,28 @@ return y; } }; + + var shapes = []; function clickGroup(event) { - var printed = pretty.print(event.target.feature.properties.edges); + var edges = event.target.feature.properties.edges; + // print properties + var printed = pretty.print(edges); $('#properties').html(printed); + + // remove before add shape + if (shapes.length > 0) { + shapes.map(s=>{ + s.removeFrom(map); + }); + shapes = []; + } + // print shape + edges.map(edge=>{ + var shape = L.geoJson(polyline.toGeoJSON(edge.edge_info.shape, 6)); + shape.addTo(map); + shapes.push(shape); + }); + L.DomEvent.stopPropagation(event); } @@ -235,9 +257,37 @@ //hook up the callback for the text box changing map.on('click', onMapClick); + + // geocode and jump result point + $('#saerch').on('click', ()=>{ + const query = $('#saerchquery').val(); + if (query === '') { + return; + } + $.ajax({ + type: 'GET', + url: 'https://nominatim.openstreetmap.org/search?format=json&q=' + encodeURI(query), + dataType: 'jsonp', + jsonp: 'json_callback', + }).done((data) => { + if (data.length === 0) { + alert('no result search data.') + } + + let e = {}; + e.latlng = { + lat : data[0].lat, + lng : data[0].lon, + }; + onMapClick(e); + }); + + }); + //hook up the callback for the tile url changing document.getElementById('tileurl').addEventListener('change', onTileLayerChange); document.getElementById('maptoken').addEventListener('change', onTileLayerChange); +