<%
'Variables to store XML Data
'strXML will be used to store the entire XML document generated
dim strXML
'strXML will be used to store the entire XML document generated
'Generate the chart element
strXML = strXML & ""
'Now, render the map using renderMap function present in FusionMaps.asp (include file)
'Also, since we're using dataXML method, we provide a "" value for dataURL here
Call renderMap("../../Maps/" & Request("map"), "", strXML, "Map1Id", "750", "460", false, false)
%>
|