diff options
author | Christopher Baines <cb15g11@soton.ac.uk> | 2014-10-04 10:19:20 +0100 |
---|---|---|
committer | Christopher Baines <cb15g11@soton.ac.uk> | 2014-10-04 10:19:20 +0100 |
commit | 6ea727fdf01fe07db7ae56d97e91cfbe2248630d (patch) | |
tree | 81d9f8d6615cc9baa1667c8aa3930cd01d644025 | |
parent | b1f1f635129e36b799b227de627a0f21c9135f11 (diff) | |
download | leaflet-soton-6ea727fdf01fe07db7ae56d97e91cfbe2248630d.tar leaflet-soton-6ea727fdf01fe07db7ae56d97e91cfbe2248630d.tar.gz |
Fix point of service popup
-rw-r--r-- | src/leaflet-soton.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leaflet-soton.js b/src/leaflet-soton.js index 283c859..a1710e7 100644 --- a/src/leaflet-soton.js +++ b/src/leaflet-soton.js @@ -202,7 +202,7 @@ offset: icons.vendingHotDrinks.options.popupAnchor }; - var content = pointOfServiceTemplate(feature.properties); + var content = LS.infoTemplates.pointOfService(feature.properties); this._map.showInfo(content, e.latlng, popupOptions); } |