I'm trying to get google map image with the following code:

<img src="http://maps.googleapis.com/maps/api/staticmap?center=#{profile.latitude},#{profile.longitude}&zoom=14&size=400x400&sensor=false"/>

but I get exception in my browser which says:

Error Parsing /content/profile.xhtml:
Error Traced [line: 48] The reference to entity "zoom" must end with the ';' delimiter.

How can i avoid interpreting & as JSF?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Try replacing & with &amp; as I think that the markup is being validated as XML/XHTML and &zoom is being parsed as an HTML entity which does not exist.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.