I am developing an application which is storing places in database.
The problem is:
I have a main view of map, then I click add place button. The button goes to standard form which contains name, description and coordinates. Coordinates I am taking from map and changing to string. Then it saves in SQLite database.
But I have no idea how use geocoordinates from DB, because they are strings, not a GeoCoordinates, and simply I can’t use them to for example pushpin with binding data
Considering there is no
GeoCoordinate.Parse()method and assuming your string representation comes fromGeoCoordinate.ToString(), you could use something like this: