Hi. thanks for contacting our forum.
There are 3 or 4 different kinds of application in the workbook you downloaded. There are also 2 parameter sheets. 1 which contains generic parameters, applicable to all data sets - this called geoCodingParameters, and another which is specific to a particular data set.
Im assuming that you have the geocoding one figured out, so we'll deal with the simple marking on a google map.
A typical application would simply look like this
Public Sub stepByStepMarking()
googleMarkingExample "Step by Step Parameters"
End Sub
The other type is optional, for example creating circles, flightmaps, alternate markers etc.
- acceptable values. In most cases, a few parameters refers to either a size or dimension equivalent to those required by the Mapping API (like size of a circle - and these are documented in
http://ramblings.mcpher.com/Home/excelquirks/getmaps/mapping/circles ), but mainly they refer to column headings in your data. In other words they are simply describing where to find data. A third type are category names you assign (and invent) in order to group places together as in
http://ramblings.mcpher.com/Home/excelquirks/getmaps/mapping/quicklinks
- You can use your own images - Just add a column of data with URL links to markers in it (or leave it blank to get the default image) as per
http://ramblings.mcpher.com/Home/excelquirks/snippets/steps/custommarkers. and set the markerImage parameter to the column name
- I assume you mean by path, flightPath- as per the writeup at
http://ramblings.mcpher.com/Home/excelquirks/getmaps/mapping/flight. In this case you can add a couple of columns to your data - flightGroup and flightColor. Any data points in the same flightgroup will be connected. You can have mutilple flight groups. Flightcolor defines the color of the connection line.
Finally, a standalone html file is created that contains all the code and the data from the worksheet, with all the parameters translated into appropriate googleMaps api code. The template for the code (should you need to change it) is itself the value of various parameters in the geoCodingParameters worksheet.
So in summary, Excel provides the parameters and data, VBA creates a javaScript application from an html template based on that, and you execute the generated application with you browser.
regards
bruce