简体   繁体   中英

Adding code specific to Windows Phone Internet Explorer

I've been testing out the Google Maps API on various browsers and also different phones/tablets... all is working fine except for when trying it on a Windows Phone. After some research I've found out it's because Google Maps isn't supported on Windows Phones hence the error.

My question is how would I go about making it so that it displays an image of the map instead of the map API?

eg. for Windows Phone it would display:

 <div><img src="map.png"></div> 

But for everything else it would display and use the API:

 <div id="map_canvas"></div> 

Many thanks for your help

You can check the user agent for IEMobile

This is the windows phone mobile agent.

Or better yet can you not do a boolean check if the map is working so if it fails in any browser then you are covered?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM