(zoomTo)
| 456 | } |
| 457 | |
| 458 | function updateMapZoomTo(zoomTo) { |
| 459 | // can't use mapEl.zoomTo(...) here, it's too slow! |
| 460 | map.options.mapEl.lat = +zoomTo.lat; |
| 461 | map.options.mapEl.lon = +zoomTo.lng; |
| 462 | map.options.mapEl.zoom = +zoomTo.z; |
| 463 | } |
| 464 | }, |
| 465 | getBoundsFromMeta: function (mapml) { |
| 466 | if (!mapml) return null; |
no outgoing calls
no test coverage detected