On Nov 2, 7:49 pm, DaveGivesPHPaShot <
tolman.da...@gmail.com> wrote:
> Hello,
> Here is my page.
http://www.thebigmap.com/test/search_by_tagnov02e.html
The mysql_map variable is local to your "generic_load" function, so is
not available (is undefined) in the global context in which the html
click handlers run:
function generic_load() {
var mysql_map = new google.maps.Map(
To make it global:
var mysql_map = null;
function generic_load() {
mysql_map = new google.maps.Map(
-- Larry
> Thanks !