Map Software |  Online Map Editor |  Interactive Map |  Register Map Program |  Reseller |  Version History |  Interactive Map FAQ |  User Guide |  HTML5 Mapping |  Custom Interactive Maps |  Contact
Interactive map: iMapBuilder map software. Create editable interactive maps, flash map and clickable image maps

iMapBuilder - Interactive Mapping Software

Build interactive flash maps and images in minutes with no coding

iMapBuilder for Windows, interactive map, map software, mapping software, provides interactive flash map, clickable map, editable world map, image map, image map tool  iMap online, map editor ,interactive map maker within browser, on-line map application, web based mapping tool, embed map to website
Loading
iMapBuilder software
interactive map software for website
iMapBuilder for Windows, interactive map, map software, mapping software, provides interactive flash map, clickable map, editable world map, image map, image map tool
iMap online, map editor ,interactive map maker within browser, on-line map application, web based mapping tool, embed map to website
interactive map software discussion forum Questions? Suggestions?
Discuss everything about iMapBuilder and interactive maps in our support forum.
iMapBuilder Interface
Sample of multi-level map



html5 interactive map software

  • Released On
  • 10th May 2013

Download free trial html5 interactive map software

Map making software with wide selection of country maps. Generate maps using easy editor for webpage or blog. Check latest map software feature release or watch online video tutorial for creating maps.

 

Adding/Importing placemarks to interactive map using Longitude and Latitude

iMapBuilder supports adding placemarks using Longitude and Latitude coordinates, which is suitable for pinpointing city locations, displaying branch offices across the regions, or showing an absolute location of a particular place. The software allows you to add points manually on the grid, or import data from an Excel spreadsheet file.


Steps:

  1. Select File->New in the toolbar. Click Latitude Longitude icon button in template wizard, a list of maps would be presented such as World countries, United States (Geo), and United States Mainland (Geo). Click on one of them to open a new project.

  2. To add icon, you can click on the icon import placemark using latitude and longitude and select Placemark under 'Points and Lines' section. A pop up window is now displayed.

    import placemark using latitude and longitude


  3. You are required to config the default type of mouse over/mouse click event properties, this setting will apply to all the imported points. In section 1, select the tooltips styles, set the color/width. After that, select mouse click event properties and choose the map icons. Fill in the information of placemark using Grid in section 2 as below:

    Importing data from an Excel spreadsheet file
    You can import your data from an spreadsheet unicode text file (.txt) by pressing import data from excelor click paste all from clipboardbutton to paste the data from clipboard. You can also click copy all to clipboardbutton to copy the data or export the data to Excel by pressing data file button.

    When clicking import data from excel, a pop up window is displayed for you to load a data file in txt format, select a recent data file or load sample data.

    import data from data file

    ColumnDescriptionSample
    Placemark nameThe name of the placemark, a reference name shown in the item list of points and lines editing interfaceWashington DC
    LatitudeThe latitude coordinate of the placemark, it should be in decimal degree format. If you have Latitude in degree/minute/second format, you are required to convert into this format first.

    Latitude will range from 90 to -90 where N is positive and S is negative
    38.89
    LongitudeThe longitude coordinate of the placemark, it should be in decimal degree format. If you have Longitude in degree/minute/second format, you are required to convert into this format first.

    Longitude will range from -180 to 180 where W is negative and E is positive
    -77.02
    IconIcon of placemark, click [Get Icon Path] in section 2 to retrieve the icon path, then paste the path in this field. Or click [Apply to all] to also fill in the icon size and angle.

    If you need to add your own icon, please add this to the icon library before use.
    icons/standard/dot_red.swf
    Icon SizeIcon size in percentage, you can also click [Apply to all] in section 2 to fill in the icon and angle. Icon size ranges from 1 to 300 and it should be an integer value.
    100
    Icon AngleThe angle of rotation of the placemark icon, you can also click [Apply to all] in section 2 to fill in the icon and size. Icon angle ranges from -180 to 180 and it should be an integer value.
    30
    Placemark label

    The label beside the placemark, leave it blank if not necessary.

    Washington DC
    MO-Tooltip DescriptionThe description text for the mouse over tooltip, leave it blank if infobox type is selected. The branch office is located here.
    MO-InfoBox DescriptionThe description text for the mouse over infobox, leave it blank if tooltip type is selected. Contact person: John Smith
    MO-InfoBox ImageThe image path for the mouseover infobox. Only local path is supported, leave it blank if not necessary.C:\Documents and Settings\image.gif
    MO-InfoBox AnchorThe anchor position of the mouse over infobox, Value [1-9] where 1 for Top Left and 9 for Bottom Right
    anchor of infobox value

    1
    MC-UrlThe URL Address when mouse click the placemark, leave it blank if InfoBox type is selected http://www.imapbuilder.com
    MC-Url TargetThe target for the URL Address, For example, "_blank" for new window, "_self" for same window
    Leave it blank if InfoBox type is selected
    _blank
    MC-InfoBox DescriptionThe description text for the mouse click infobox, leave it blank if URL type is selected The branch office is located here.
    MC-InfoBox ImageThe image path for the mouse click infobox. Only local path is supported, leave it blank if URL type is selected http://www.imapbuilder.com
    MC-InfoBox AnchorThe anchor position of the mouse click infobox, Value [1-9] where 1 for Top Left and 9 for Bottom Right
    anchor of infobox value
    9

     

    Convert lat/long coordinate to x/y coordinate

    In case you may need to connect your database and generate the XML on the fly, you may need to convert the lat/long coordinate to the x/y coordinate, because our XML will only support x/y coordinate.
    You may use the following formulas:

    For WorldCountries Map:

    X = (((180+Long)*800)/360);
    Y = (((90-Lat)*400.25)/180) - 14.25;

     

    For United States Mainland (GEO) Map:

    X = (((Long-(-124.73174))/(-66.94-(-124.73174))*800));
    Y = (((Lat-49.384358)/24.544701-49.384358)344));

     

    For United States (GEO) Map:

    if Long - (-187.538333) < 0 then
    {
    Long = Long + 360
    }
    else if Long - (-187.538333) > 360 then
    {
    Long = Long - 360;
    };
    X = (((Long-(-187.538333))/(-65.22111-(-187.538333))*800));

    Y = (((Lat-71.352560644)/(17.884813-71.352560644)*350));