From 71a002c31c057628974e2829587a096d2184751b Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Thu, 17 Sep 2015 15:15:44 -0700 Subject: [PATCH] Added test for 'L.control.zoom' in 'leaflet'. --- leaflet/leaflet-tests.ts | 6 ++++++ 1 file changed, 6 insertions(+) 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: '-' +});