I ran into the same problem. I found this solution to download google map in app.
The writer uses an iFrame to display the map:
default.html
...
<body>
<iframe id="Map" src="ms-appx-web:///map.html" style="width:100%;height:100%;"></iframe>
</body>
map.html
<!DOCTYPE html>
<html>
<head>
<title></title>
<script
src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&signed_in=true">
</script>
...
I don’t need to include a map, but you want to use the Google Place Library in my existing view model.
I hope this solution solves your problem.
source
share