Hover your cursor over the boxes to see the example cursors
Wait for the <iframe>
to load, then set the cursor on the contents:
Using the Google Maps Javascript API v3.
{% highlight javascript %}var map = new google.maps.Map($('#google-maps')[0], { center: { lat: 37.544494, lng: 138.276398 }, zoom: 8 }); google.maps.event.addListenerOnce(map, 'bounds_changed', function() { $('#google-maps').find('div').awesomeCursor('location-arrow', { size: 22, color: 'orange', flip: 'horizontal' }); });{% endhighlight %}