/* * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ var leafletnearbylayer = L.geoJson( { name: "Nearby People", type: "FeatureCollection", features: [ { type: "Feature", geometry: { type: "Point", coordinates: [0, 0] }, properties: { id: "", name: "", username: "", verified: false } } ] }, { onEachFeature: function (feature, layer) { if (feature.properties && feature.properties.popupContent) { layer.bindPopup(feature.properties.popupContent); } }, pointToLayer: function (feature, latlng) { var marker = L.marker(latlng, { icon: L.icon({ iconUrl: "img/mapmarker.svg", iconSize: [25, 41], iconAnchor: [12.5, 40], popupAnchor: [0, -28] }) }); return marker; } } ); function updateMap() { var diagonalMeters = leafletmap.getBounds().getNorthWest().distanceTo(leafletmap.getBounds().getSouthEast()); var radius = (diagonalMeters / 2.0) / 1609.344; callAPIRawResponse("getnearby", { key: localStorage.getItem("key"), latitude: leafletmap.getCenter().lat, longitude: leafletmap.getCenter().lng, radius: radius, format: "geojson" }, function (data) { if (data.type == "FeatureCollection") { leafletnearbylayer.clearLayers(); data.features.forEach(function (item) { item.properties.popupContent = " " + (item.properties.name.length > 50 ? item.properties.name.substring(0, 50) + "..." : item.properties.name) + "

Send Money"; leafletnearbylayer.addData(item); }); leafletmap.addLayer(leafletnearbylayer); $(".leaflet-marker-icon").addClass("card-prevent-open"); } }); }