MAC Safari 5.0.4 Bug When Using Google Maps API

Mac Safari 5.0.4 bug when using Google Maps API

I ended up finding the solution to my problem. It did indeed have to do with z-index. Interesting that it was only happening in Safari, though. Regardless, if anyone else is noticing something odd going on with Safari and google maps it may have something to do with the z-index of an element on your page. That's where I would start. Thanks again!

Google Maps API killing CSS animations in Safari

With the over-rides mentioned above (visibility:visible; & -webkit-tranistion:opacity...;) this seems to work for me.

http://jsfiddle.net/vxfhT/1/

Odd redraw (?) issue when embedding google maps on page in Safari / Mac

I had the same problem and posted a while back the user polo posted this fix to it. it worked on my site and fixed the problem

add this to your css

* {
-webkit-font-smoothing: subpixel-antialiased !important;
-webkit-transform: none !important;
}

Odd redraw (?) issue when embedding google maps on page in Safari / Mac

I had the same problem and posted a while back the user polo posted this fix to it. it worked on my site and fixed the problem

add this to your css

* {
-webkit-font-smoothing: subpixel-antialiased !important;
-webkit-transform: none !important;
}

Date parsing in javascript is different between safari and chrome

You can't really use Date.parse. I suggest you use: new Date (year, month [, date [, hours [, minutes [, seconds [, ms ] ] ] ] ] )

To split the string you could try

var s = '2011-06-21T14:27:28.593Z';
var a = s.split(/[^0-9]/);
//for (i=0;i<a.length;i++) { alert(a[i]); }
var d=new Date (a[0],a[1]-1,a[2],a[3],a[4],a[5] );
alert(s+ " "+d);

Ionic App stopped working on IOS 15 (didfailprovisionalloadforframe)

Problem solved by a colleague, turned out a few providers (DatePipe, Location, Market, InAppBrowser) in app.component.ts and a router animation were causing the fuss.

@Component({
selector: 'app-root',
templateUrl: 'app.component.html',
styleUrls: ['./app.component.scss'],
animations: [routeAnimations],
providers: [
DatePipe,
Location,
Market,
InAppBrowser
]
})

Upon moving them to app.module.ts the app finally worked on IOS 15.



Related Topics



Leave a reply



Submit