This may be a dumb question, but here goes.
I have a simple app that plots points in a Xamarin.Forms.Map
. My MainPage.xaml
looks like this and it works as expected:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:maps="clr-namespace:Xamarin.Forms.Maps;assembly=Xamarin.Forms.Maps"
xmlns:local="clr-namespace:GasStations"
x:Class="GasStations.MainPage">
</ContentPage>
Instead of using this map, I would like to display the map from the Waze
app.
Is it as easy as switching the control or is it more complex?