sameCoordinate static method
Implementation
static bool sameCoordinate(LatLng coord1, LatLng coord2) {
if (coord1.latitude == coord2.latitude && coord1.longitude == coord2.longitude) {
return true;
}
return false;
}
static bool sameCoordinate(LatLng coord1, LatLng coord2) {
if (coord1.latitude == coord2.latitude && coord1.longitude == coord2.longitude) {
return true;
}
return false;
}