kmb
kmb

Reputation: 871

Implement map into application

I would like to ask if there is any free solution ready to implement it to my application? I'm aiming into Open Street Map as I want free solution. I know about OsmSharp which is neat but lack of documentation and there is a question:

is there possibility to change for example pin design or map layout?
I heard that it's possible but you have to write your own render...

I am targeting iOS, Android and WP with our geolocalisation game app.

Upvotes: 3

Views: 3466

Answers (3)

SushiHangover
SushiHangover

Reputation: 74144

As with other OSM library/framework solutions, you will need to provide your own tile server or use a commercial OSM tile service.

Mapsui is a C# map component for apps

Supported platforms: WPF, UWP, Android, iOS

Upvotes: 0

zchpit
zchpit

Reputation: 3121

About leak documentation I have written a blogpost about it: http://zchpit.blogspot.com/2017/10/open-street-map-in-xamarin-forms.html

You can find source code on my github: https://github.com/zchpit/OPM_in_XamarinForms

About: is there possibility to change for example pin design or map layout?

Yes. You can change map (one from many) or generate your own map (same like in standard xamarin)

Upvotes: 0

Jason
Jason

Reputation: 89102

Xamarin Forms has a built in Map control. TKCustomMap is a third-party renderer that adds functionality to the built in map.

Upvotes: 4

Related Questions