diff --git a/leaflet/leaflet-tests.ts b/leaflet/leaflet-tests.ts index 5bc58e304..6ab018a4e 100755 --- a/leaflet/leaflet-tests.ts +++ b/leaflet/leaflet-tests.ts @@ -413,3 +413,9 @@ polyline.addLatLng(latLngObjectLiteral); var popup: L.Popup = L.popup(); popup.setLatLng(latLngLiteral); popup.setLatLng(latLngObjectLiteral); + +var zoomCtrl = L.control.zoom({ + position: "topleft", + zoomInText: '+', + zoomOutText: '-' +});