Xamarin.Forms.GoogleMaps error when debug on IOs - google-maps

I have a big problem. I'm using Xamarin.Forms.GoogleMaps to use function in it.
When i debug app on Android, it work very good. But when i debug app on IOs, it appear bug. I found some solution to solve it, but cannot.
Someone can help me, plz?
enter image description here
enter image description here

Related

How to get console logs on Chrome mobile without usb debug?

I once came across an SO answer that gave a Chrome URL to navigate to, that had a button to "enable" JS console logging. After enabling the logging, that tab would show the console logs of other Chrome tabs.
I know this answer seems like a duplicate, but I'm having a lot of trouble finding how to do that again. It was super convenient since it gave the console logs on any Chrome browser without needing a USB connected.
Any ideas? I know I came across it in an SO question about iOS debugging.
Found it! So, it's actually a Chrome on iOS only feature.
URL: chrome://inspect
That URL won't show anything on Chrome for Android, which tripped me up. But, on iOS it shows a "Start Logging" button.
Answer from: https://stackoverflow.com/a/55433616/2096769

Ionic transitions getting white page only in ios

Im developing an app in ionic and its working perfectly fine in android, emulators and web (with ionic serve). But when is running in ios devices in transitions between pages suddenly it shows a white view instead the view that it have to display. This doesn't happen all time and i didn't figured out when specifically happen.
I appreciate any help.
it is probably a javascript error. To find it, the best way is:
first connect the phone with your mac (must be a mac) by USB.
Open Safary (no Chrome or Firefox)
In the Safary settings -> Advanced -> enable develop tools
Now on Safary will appear a develop menu on the top, click on it and you will see your phone and the app running, click on it.
In the develop tools, will appear all the console you normally see testing with ionic serve, but in the real device.
Just use the app and when you get a black page check the javascript error on safary develop tool.
I hope it helps, it did helped me a lot after discover it.
Finally I resolve it, it was a problem with transitions of ionic in ios. Adding this line to config in app.js like this
.config(function($stateProvider, $urlRouterProvider, $ionicConfigProvider) {
$ionicConfigProvider.views.swipeBackEnabled(false);
}
Disable all back navigations transitions with swipe.
For what I searched, it can be a lot of things.. What helped me to figure out my case was small commits.
Anyway, I tried to use default param values and it doesn't work for my webview in iOS. If that's your problem too, you can see an alternative way to do default param values here:
Set a default parameter value for a JavaScript function
didn't work:
function(param = defaultValue){}
did work:
function(param){
param = param ? param : defaultValue;
}
Simply use can-swipe-back="false" on your ion-view element.

unity player chrome error making me crazy

I want to open unity game in my chrome browser but it’s always showing me error that says Unity web Player Needs Your Permission and it’s not playing. I've installed unity player in my PC.
I have already tried all things but still it’s not working.
I don't know how to solve this... help please!
Enter chrome://plugins/ into the URL bar for Chrome. Find the Unity Player Plugin and check the box for Always Allowed.
I imagine you just haven't allowed the plugin to run. When you try and run it, do you see an icon at the right end of the URL bar? If you do, that icon indicates a plugin was blocked. When you click on it, you should be able to decide what to do with it (allow or continue blocking).
You can find some more info here.

Webpage made using Polymer terminates on Google Chrome

I have made a webpage using Polymer. The webpage doesn't open on Google Chrome (both Windows and Android). When I try to open the page, Chrome shows "He's Dead, Jim!" message on Windows and "Aw, Snap!" message on Android. I have reset the settings and reinstalled Chrome but the problem still continues. Can anyone tell me how to solve this problem or the reason behind it?
https://www.googledrive.com/host/0B2Zii8voDW6QcGduNnl1cFBReXc/fold/
maybe you can check if there is any error in your page, which stop polymer initialization:
https://www.polymer-project.org/docs/polymer/debugging.html#unregistered-element-bookmarklet
Btw, did you try the official demo page with your browsers? If they work, then it's your code problem.

facebook php SDK on chrome

I use the PHP SDK for creating a facebook app. It works fine on all the browsers, but not on Chrome.
I tested the adding of :
header('P3P: CP="CAO PSA OUR"');
at the begining of the facebook.php file, but in vain.
I know this topic has been covered in some posts on SO, but my problem seems different : on chrome when I load the facebook app I have a grey page with this icon
Is the problem related with https things ? With cookie things ?
More than that, when I use the JS sdk the same issue occurs.
Thank you for any help.