Hello Community
Here is what I am trying to do.
I use the Couch tag
Now in the description in the docs it says that it can work on the latitude/longitude as well as the address.
the following code works perfect
But when I do a nested tags, it says "Sorry we were unable to geocode the address"
here is the code
What i need to do is to be able to enter in the admin side the address and Zoom.
All help is appreciated.
Here is what I am trying to do.
I use the Couch tag
- Code: Select all
<cms:google_map />
Now in the description in the docs it says that it can work on the latitude/longitude as well as the address.
the following code works perfect
- Code: Select all
<cms:google_map
name='my_map'
address='1600 Amphitheatre Parkway, Mountain View, CA'/>
But when I do a nested tags, it says "Sorry we were unable to geocode the address"
here is the code
- Code: Select all
<cms:hide>
<cms:editable name='address1' label='Address' type='text' order='0'>1600 Amphitheatre Parkway, Mountain View, CA</cms:editable>
</cms:hide>
<cms:google_map
name='map3'
address='<cms:show address1 />'
width='170'
height='170'
zoom='14'
style='border-radius: 100%'
/>
What i need to do is to be able to enter in the admin side the address and Zoom.
All help is appreciated.