On 24 December 2011 19:23, Diogo Moreira <[email protected]> wrote: > > I don't know what to do! Can anyone help me with this?
First thing to do is to understand the error message. The reference to the entity "sensor" must end with the delimiter ";" It's treating "&sensor" as an HTML entity and complaining that you haven't put &sensor; with a terminating semi-colon. The fix is to correctly encode & as the HTML entity & (with the semi-colon). You'll need to do all three. -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.
