In my project I have a Google map with a radar, modeled after the example on the plugin documentation page (https://krpano.com/plugins/googlemaps/?version=121).
This is my code:
Code
<layer name="map_container" type="container" bgcolor="0xFFFFFF" bgalpha="0.5" keep="true" align="leftbottom" x="5" y="80" width.normal="430" height.normal="220" width.mobile="260" height.mobile="140">
<plugin name="map_display" keep="true"
url="%VIEWER%/plugins/googlemaps.js"
key="**hidden**"
maptype="normal"
controls="zoom"
tilt="0"
lat="53.55403690079327" lng="10.001521925140983"
zoom="16"
poi="false"
activespotenabled="false"
align="lefttop" x="10" y="10" width="-20" height="-20"
>
<radar visible="true" size="70" alpha="0.45" fillcolor="0xD0D0D8" fillalpha="1.0" linecolor="0x0000EE" linealpha="0" linewidth="0" dragable="true" headingoffset="0" zoomwithmap="false" />
<spot name="locIndicator" lat="53.55403690079327" lng="10.001521925140983" heading="0" active="true" />
</plugin>
</layer>
Display More
This works, when the project runs in the krpano editor. But the radar does not show up in the browser (different browsers tested). The map and the spot work both, but not the radar. I added the "radar.js" file to the plugins directory, but it still does not work.
I’m using krpano version 1.21.2.
Am I missing something?