Pregunta

Hello Im new to fusion tables and google maps api im in an urge for this project delivered on monday, im trying to query a geometry file but it sends me an error " data may still loading" and I have no response here is my code grabbed from another website

Thanks in advance.

here is the link to the code https://docs.google.com/document/d/1CfwlKDE3qJ74Iiom-RUtO96GNSyIbrY2YmQ9C0AWrfs/edit?usp=sharing

¿Fue útil?

Solución

The where-clause in your query:

 where: "Query = '" + query + "'"

....is wrong.

Query is expected to be the name of a column, but in the table is no such column.

The name of the column is Municipio

 where: "Municipio = '" + query + "'"
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top