Open eduboxgithub opened 9 years ago
I'm still not able to run google maps on the windows cordova platform.
I found this article: https://msopentech.com/blog/2014/09/25/apache-cordova-gains-windows-8-1-and-windows-phone-8-1-support-2-2/#
and this one: http://www.creepyed.com/2012/11/how-to-use-the-google-maps-api-on-windows-8/
They suggest to load the map on a iframe, but I don't think I can do that using angular-google-maps.
Any other suggestion/fix?
Sorry I can't help you as I am unfamiliar with both platforms. If you could set up a hosted Virtual Machine then maybe others could help (including me). This goes along the lines of something small and reproducible.
I'm having the exact same problem. Anyone found a solution yet?
No one made an example to play with. So I haven't looked at it.
Not an easy thing to share the whole environment in a hosted virtual machine... My VMware image is about 100 GB; any suggestions on how we could manage?
Not asking you to share the whole VM, I am asking you to make a small verifiable example that reproduces the same thing. What do you think I have to do to debug it?
Well, you will need Windows 8.1 or 10, Visual Studio 2015 Community, NodeJS and Cordova. Let me know if you can manage this setup and I can provide a small sample app and the necessary steps to replicate the issue.
I have the same problem. I do not think it is the problem of Angular google maps, but the cordova windows application have no access to google map service.
I have the same problem with google maps and a Cordova windows phone app. Does anybody find a solution after this time?
I have read that it has something to do with
https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-whitelist/
use CONFIG.XML to select "plugins" on the left bar. Find the whitelist plug in. Edit the whitelist plugin's PLUGIN.XML file and add navigation permission:
<Package>
<Applications>
<Application>
<ApplicationContentUriRules>
<allow-navigation href="*google.com*" />
</ApplicationContentUriRules>
</Application>
<Applications>
</Package>
Change google.com to the service your application is trying to navigate to.
I have no idea if this will work however.
Hello,
I get this error when trying to run windows phone 8.1 cordova projecto (adding windows platform):
I think I have the cordova-plugin-whitelist correctly configured with the proper intent, navigation and network tags on config.xml (I also have the meta tag on index.html).
Strangely if I add wp8 cordova platform and run it, I have no errors. Only on the windows platform running the windows phone 8.1 project inside the solution.