Which open source Chart Library is best for Native Xamarin ios and android?. I didn't find out anything in xamarin component store.
The component store is deprecated. Take a look at Microcharts, ShinobiControls, OxyPlot. Google search with Xamarin + charts will also recommend some more options to look at.
Related
I plan to use here api to reduce my costs compared to google maps.
Is there a way to use the here map in Xamarin forms?
I have already designed the search combo suggestion to find places. Now I would like to show the places on the here map.
Thanks,
You can use android studio. The Xamarin bindings still need to be created in the SDK, as the are not on our roadmap yet.
But you can either create the bindings yourself.
I'm trying to embed a XAML page created with Xamarin.Forms in my native Xamarin.Mac application.
How can I achieve that?
Check out this guide for embedding XAML in native UI. The approach is very similar to iOS, there is an analogous CreateViewController extension method available in Xamarin.Mac:
nativeViewController = new MyPage().CreateViewController();
_navigation.PushViewController(nativeViewController, true);
We have an requirement for showing Bing maps view in Xamarin forms app for Android and iOS both.
We have done the integration of Google maps for both platforms with the help of
https://learn.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/map#Using_Xaml
and
https://github.com/amay077/Xamarin.Forms.GoogleMaps.
I neither found any documentation that Bing maps supported on Android and iOS nor any thing says it did not support.
So How can I get documentation to integrate Bing maps in my Xamarin forms Android and iOS application.
Xamarin.Forms supports Bing Maps only for UWP not for android or iOS. There is not official announcement or SDK's are available to do so. If you wish to add Bing Maps do it for UWP project. For Android need to have GoogleAPI's keys. Along with iOS project you can go either apple map's or google map's.
To have detailed information go through below articles
https://www.c-sharpcorner.com/article/getting-started-with-google-and-bing-maps-using-xamarin-forms/
https://trivedihardik.wordpress.com/2012/03/24/how-to-integrate-bing-map-in-android/
I have a Xamarin.Forms application that I would like to enable as a text and/or URL share target. I've done this in a Windows UWP app by handling OnShareTargetActivated, but I don't see an equivalent in Xamarin.Forms. I am willing to use compiler directives if needed; I would prefer that to doing iOS/Android/Windows specific things in the corresponding projects themselves. Right now all my code is in the Xamarin.Forms project and I'd like to keep it that way.
Unfortunately Android and Ios do not have a similar share event so there is no equivalent event in xamarin forms.
I am using titanium SDK 5.0.0.GA.I have lot of map annonation on mapview.I want to load all annonation on mapview and display it as per map zoom level.I know there is one way for doing that is cluster map but I am not sure how to achieve this in android using titanium framework.
Look at Google map clustering in android
Thanks
There is a JavaScript-based library called Ti.MarkerManager to hide pins in certain zoom-levels. Unfortunately, at least iOS does not offer Clustering in their native MKMapView, yet. The Android-part could be implemented as a new feature in Ti.Map Android.