The embed.js file is special because it is used standalone without the
rest of our javascript environment. Closes #909.
if (args.marker) {
L.marker(args.marker.split(','), {icon: L.icon({
if (args.marker) {
L.marker(args.marker.split(','), {icon: L.icon({
- iconUrl: OSM.MARKER_ICON,
+ iconUrl: <%= asset_path('images/marker-icon.png').to_json %>,
iconSize: new L.Point(25, 41),
iconAnchor: new L.Point(12, 41),
iconSize: new L.Point(25, 41),
iconAnchor: new L.Point(12, 41),
- shadowUrl: OSM.MARKER_SHADOW,
+ shadowUrl: <%= asset_path('images/marker-shadow.png').to_json %>,
shadowSize: new L.Point(41, 41)
})}).addTo(map);
}
shadowSize: new L.Point(41, 41)
})}).addTo(map);
}