ang-google-maps
Advanced tools
Comparing version 1.3.1 to 1.3.2
{ | ||
"name": "ang-google-maps", | ||
"version": "1.3.1", | ||
"version": "1.3.2", | ||
"homepage": "https://github.com/khalednobani/ang-google-maps", | ||
@@ -5,0 +5,0 @@ "description": "Initialise Google Maps, Set Location, Drop Pins, Get Connected Routes between the current location and the destination.", |
{ | ||
"name": "ang-google-maps", | ||
"version": "1.3.1", | ||
"version": "1.3.2", | ||
"description": "Module to initialize Google Maps API", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -394,5 +394,6 @@ (function(ang, g) { | ||
var lat = (typeof $StartLocation.lat == 'function') ? $StartLocation.lat() : $StartLocation.lat || 0, | ||
lng = (typeof $StartLocation.lng == 'function') ? $StartLocation.lng() : $StartLocation.lng || 0; | ||
lng = (typeof $StartLocation.lng == 'function') ? $StartLocation.lng() : $StartLocation.lng || 0, | ||
LatLng = lat + ',' + lng; | ||
if (latlng == (lat + ',' + lng)) { | ||
if (latlng == LatLng) { | ||
console.log("Matched"); | ||
@@ -399,0 +400,0 @@ console.log("Do Something"); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
580473
1221