How do I embed Apple Maps into a website?

Hello.


Our company's website presently has Google Maps embedded, but I'd like to change and embed Apple Maps instead.

Is it possible?

How?

Thanks.



Stefano


N.B. EXTREMELY basic programming skills!

How you 'embed' them may depend on which device you expect your users to connect with...


Seen this?


https://developer.apple.com/maps/


As well, you might want to check out the https://forums.developer.apple.com/community/system-frameworks/maps-and-location forum

I don't think Apple provides a web interface. As far as I know you can only use Apple maps in apps running on Apple devices.

If you wanna set the link for google map, you must set the direct url is google site.

This is like this.


<a href="https://www.google.co.jp/maps/@32.9998961,138.4240125,5z" target="_blank" />google maps</a><br />


If you must set in iframe.Do it.

<body>

<p>

<iframe align="right" src="https://www.google.co.jp/maps/@32.9998961,138.4240125,5z" width="640" height="1080" name="main" /></iframe><br />

<a href="https://www.google.co.jp/maps/other place" target="main" />google map2</a>

This is place on google maps.<br />

</p>

</body>

</html>

How do I embed Apple Maps into a website?
 
 
Q