Questions tagged [xamarin.forms.maps]

61 questions
3
votes
1 answer

How to use Dark Mode Google Maps in Xamarin.Forms.Maps?

I'm trying to use the Dark Mode Google Maps in my Xamarin.Forms app using the Xamarin.Forms.Maps nuget package. I've managed to have Dark Mode on iOS Maps using this line of code in the CustomRenderer in the OnElementChanged if(e.NewElement != null)…
Jimmy
  • 105
  • 15
3
votes
1 answer

How can I change and marker/pin icon on custom map using XamarinFormsMaps?

I need to customized my pins/markers, I already added all the renderers and classes need it but I still don't know how to change the marker and place an image. I followed the steps from Microsoft…
1
vote
0 answers

Xamarin Forms Maps - Downloading and loading custom tiles from SQLite database

I am attempting to download a number of images to use as custom tiles for Google Maps. I am downloading the tiles as a byte[] using the code: using (WebClient webClient = new WebClient()) { var response = webClient.DownloadData(new…
Bouapha
  • 31
  • 3
1
vote
0 answers

Xamarin.Forms.Map is not working for UWP platform. How to make it work?

I'm trying to load street map using Xamarin.Forms.Map plugin in my project for UWP app. For that I have also get the token from MSDN. Here is what I have done: MapePage.xaml
Divyesh
  • 2,085
  • 20
  • 35
1
vote
1 answer

Xamarin.Forms.Maps pins with expanded message window

I'm using Xamarin.Forms.Map and I want to show pins on my map with already expanded window message(without click on them). Something like screenshot. By default window message show only after I clicked on them. How can I do this?
1
vote
0 answers

Xamarin.Forms.Maps Custom pin loading on iOS simulator but not physical device

I have a problem where I'm using Xamarin.Forms.Maps and everything works well on the iOS simulator, I open the map, from there I navigate to the Custom pins and all of them are displayed with no issue, however the problem happens when I use a…
Jimmy
  • 105
  • 15
1
vote
1 answer

Add Image from custom pin object in Android InfoWindow dynamically in Xamarin.Forms.Maps

I'm trying to add the object's image passed to the custom pin in the InfoWindow to the left of the InfoWindow. I have an app that calls an API and returns an object that has a name and an image and I want the InfoWindow's left icon to be the…
Jimmy
  • 105
  • 15
1
vote
1 answer

How to append positions when creating a Polyline with Xamarin.Forms.Maps in runtime?

I am creating a Xamarin.Forms.Maps.Polyline in runtime. How can I append positions dynamically, given that the Polyline.Geopath property is read-only? Createing a polyline in runtime Following the document to create a polyline : Xamarin.Forms Map…
madeinQuant
  • 1,721
  • 1
  • 18
  • 29
1
vote
0 answers

Issue with trigonometry using Xamarin.Forms.Map.Position

I am working on a mobile app in C# using the Xamarin framework. I am trying to move a point by a fixed angle on a map like in the first part of the gif below. I believe I am using the right mathematical functions to compute the coordinates of the…
1
vote
1 answer

how to show selectors on Xamarin.Forms.maps.map

My app has a map component that I create within a Stacklayout in the XAML like this:
marcp
  • 1,179
  • 2
  • 15
  • 36
1
vote
2 answers

Nuget Package Clash on Different Dependency Version

I'm using Xamarin.Forms.Maps and Microsoft.AppCenter.Push in my PCL project. Lately I tried to update my Push to latest version, but it's clashing with the Maps because different version of Xamarin.GooglePlayServices.Base is expected. Severity Code…
1
vote
1 answer

Xamarin.Forms.Maps crashed on android 7+

i am a beginner xamarin.forms developer and i have developed some free application with google maps for my town. The application works perfectly on all Visual Studio's (2019) android emulators and even on my old phone (android 4.3). Publication of…
Lealan
  • 136
  • 1
  • 1
  • 8
1
vote
1 answer

Xamarin Forms Maps Pin showed on android emulator but not showed on android device

I have developed an application in xamarin for android with xamarin.forms.maps. In the android emulator when debugging works correctly. Debugging on an android device still shows the map but neither centers the map on the past coordinates nor draws…
Jose M. AR
  • 13
  • 3
1
vote
1 answer

Xamarin Forms 4.1 CalloutAccessoryControlTapped is no more called for tap on annotation view

Recently, a behavior in iOS map annotation changed : The event CalloutAccessoryControlTapped is no more called whe the user tap on the annotation view. For example if i tap on the red area in the image above. The only way to trigger the event is…
ArthurCPPCLI
  • 1,072
  • 7
  • 18
1
vote
1 answer

How to set certain icon instead of default pins?

I'm trying to use certain icon instead of default Xamarin.Forms pins on Map. So I created CustomisePin class that inheritance Pin. using Xamarin.Forms.Maps; namespace agroNet.Tools { public class CustomPin : Pin { public string…
Nitrus Brio
  • 89
  • 2
  • 15
1
2 3 4 5