radius-widget
Advanced tools
Comparing version 1.1.1 to 1.1.2
{ | ||
"name": "radius-widget", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "Uses Google maps API to set location and radius", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -18,3 +18,3 @@ (function() { | ||
lat: 1 * event.latLng.lat(), | ||
lng: 1 * event.latLng.lng(), | ||
lng: 1 * event.latLng.lng() | ||
}; | ||
@@ -130,7 +130,7 @@ | ||
radiusWidget.cityCircle = new google.maps.Circle({ | ||
strokeColor: '#0000FF', | ||
strokeOpacity: 0.5, | ||
strokeWeight: 3, | ||
fillColor: 'transparent', | ||
fillOpacity: 0.0, | ||
strokeColor: 'greenyellow', | ||
strokeOpacity: 0.35, | ||
strokeWeight: 6.5, | ||
fillColor: 'greenyellow', | ||
fillOpacity: 0.3, | ||
map: radiusWidget.map, | ||
@@ -215,3 +215,3 @@ center: centerPoint, | ||
lat: 51.17, | ||
lng: 10.45, | ||
lng: 10.45 | ||
}, | ||
@@ -222,3 +222,3 @@ address: { | ||
zipcode: '', | ||
city: '', | ||
city: '' | ||
}, | ||
@@ -230,4 +230,4 @@ hideForm: false, | ||
ignore: false, | ||
centerPoint: '', | ||
centerPoint: '' | ||
}; | ||
}()); |
14923