A GeoPointLike object, an array of two numbers representing longitude and latitude, or an object with lng and lat or lon and lat properties.
lng
lat
lon
Example:
const center = { lat: 53.3, lng: 13.4 };mapView.geoCenter = GeoCoordinates.fromLatLng(center); Copy
const center = { lat: 53.3, lng: 13.4 };mapView.geoCenter = GeoCoordinates.fromLatLng(center);
A GeoPointLike object, an array of two numbers representing longitude and latitude, or an object with
lng
andlat
orlon
andlat
properties.Example: