MPPoint.withCoordinates constructor
Createa a MPPoint from a set of latitude
/longitude
coordinates and an optional floorIndex
Implementation
MPPoint.withCoordinates(
{required num longitude, required num latitude, int? floorIndex}) {
this.longitude = longitude;
this.latitude = latitude;
_floorIndex = floorIndex;
}