Geographical Computation

01. Setting Up

Editor Setup

The first thing you will need is an editor, a good one that is easy to use is …

Continue Activity...

02. Getting a Working Map

Map Setup

Now that we have the basic setup done we now will work on getting being able to display …

Continue Activity...

03. SVG Paths

SVG paths

For our markers on the map we are going to be using what's is called SVG Paths. These …

Continue Activity...

04. OnClick Points

OnClick Points

Okay so now we are able have a map and we have our SVG Paths for our markers …

Continue Activity...

05. Plotting Points

Plotting Points

Now that we have a method to get the coordinates of where we want the points we need …

Continue Activity...

06. Layer Controls

Layer Controls

Now ther final part of this project is to add controls to show and hide the layers. The …

Continue Activity...

07. Complete Code

Compete Code Below

index.html

<!DOCTYPE html>
<html> 
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <meta name="viewport …

Continue Activity...