How to get coordinates about a point in Google Maps API iOS? -
how can coordinates (cllocationcoordinate2d) of pointf in google maps api xamarin ios
previously used:
pointf location = reticula.center; cllocationcoordinate2d coordinate = mapaapple.convertpoint (location, this.view);
cllocationcoordinate2d did return, google api
i use this:
pointf location = reticula.center; cllocationcoordinate2d coordinate = new cllocationcoordinate2d (mapagoogle.convertpointfromview(cllocation,this.view);
but 1 pointf me back.
i need cllocationcoordinate2d ideas?
you use this:
cllocationcoordinate2d coordinate = mapview.projection.coordinateforpoint(location);
note: point should relative map view.
Comments
Post a Comment