Kamran Akbary
Kamran Akbary

Reputation: 2981

Xamarin forms, Change map default visible region

How can I change map default VisibleRegion without invoking MoveToRegion() method? (I mean start map with a specific area, not it's default visible region that is Rome).

Upvotes: 0

Views: 2204

Answers (1)

GeralexGR
GeralexGR

Reputation: 3582

If your app is configured to use location services, you can use IsShowingUser="True" in Xaml and map will show your location.

Also as described in Map - Xamarin page:

supplying a MapSpan instance to a map constructor sets the initial view (center point and zoom level) of the map when it is loaded.

So you can use something like this

var map =  new Map(MapSpan.FromCenterAndRadius(
                 new Position(37, -122), Distance.FromMiles(0.3)));

Upvotes: 1

Related Questions