Skip to content

Commit

Permalink
backing out custom icon
Browse files Browse the repository at this point in the history
  • Loading branch information
paregorios committed Feb 26, 2015
1 parent 296b82e commit 203c83a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions skins/PleiadesEntity/place_map.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,20 @@ var placeIcon = new L.Icon({
iconAnchor: [16, 37]
});

var geojsonMarkerOptions = {
radius: 8,
fillColor: "#ff7800",
color: "#000",
weight: 1,
opacity: 1,
fillOpacity: 0.8
};

if (where) {
L.geoJson(where, {
pointToLayer: function (feature, latlng) {
return L.circleMarker(latlng, geojsonMarkerOptions);
};
onEachFeature: function (f, layer) {
layer.bindPopup(
'<dt><a href="'
Expand Down

0 comments on commit 203c83a

Please sign in to comment.