|
|
@ -57,15 +57,14 @@ var leafletpeoplelayer = L.geoJson( |
|
|
|
} |
|
|
|
}, |
|
|
|
pointToLayer: function (feature, latlng) { |
|
|
|
return L.marker(latlng); |
|
|
|
// return L.circleMarker(latlng, {
|
|
|
|
// radius: 14,
|
|
|
|
// fillColor: "#f00",
|
|
|
|
// color: "#000",
|
|
|
|
// weight: 1,
|
|
|
|
// opacity: 1,
|
|
|
|
// fillOpacity: 0.6
|
|
|
|
// });
|
|
|
|
return L.marker(latlng, { |
|
|
|
icon: L.icon({ |
|
|
|
iconUrl: "img/mapmarker.svg", |
|
|
|
iconSize: [25, 41], |
|
|
|
iconAnchor: [12.5, 40], |
|
|
|
popupAnchor: [0, -28] |
|
|
|
}) |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
); |
|
|
|