From 689ee644bbc032d226e646c881cfb76bda8fcffb Mon Sep 17 00:00:00 2001 From: Jan Trejbal Date: Thu, 18 Jun 2015 03:16:27 +0200 Subject: [PATCH] Add tests --- googlemaps/google.maps-tests.ts | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/googlemaps/google.maps-tests.ts b/googlemaps/google.maps-tests.ts index 23931850db..9b10c40ad3 100644 --- a/googlemaps/google.maps-tests.ts +++ b/googlemaps/google.maps-tests.ts @@ -115,4 +115,28 @@ var icon: google.maps.Icon = { scaledSize: new google.maps.Size(32, 32), size: new google.maps.Size(32, 32), url: "dummy" -} \ No newline at end of file +}; + +/***** MapTypeStyle *****/ + +var mapTypeStyle: google.maps.MapTypeStyle ={ + featureType: 'all', +}; + +var mapTypeStyle: google.maps.MapTypeStyle ={ + featureType: 'administrative.country', + elementType: 'all', + stylers: [], +}; + +var mapTypeStyle: google.maps.MapTypeStyle ={ + featureType: 'landscape.natural', + elementType: 'geometry', + stylers: [], +}; + +var mapTypeStyle: google.maps.MapTypeStyle ={ + featureType: 'poi.school', + elementType: 'labels', + stylers: [], +};