-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmap.js
95 lines (79 loc) · 3.38 KB
/
map.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
function addOption(select, option) {
if ( $.browser.msie ) {
select.add(option);
} else {
select.add(option, null);
}
}
function columnToSelect(column) {
return new Option(column.name, column.position);
}
$( function() {
// Contains relevant information about the Socrata dataset
var dataset = new Dataset();
$("#datasetForm").submit( function(e) {
// Don't actually submit the form
e.preventDefault();
datasetLocation = $("#datasetForm #location").val();
// Look for a UID and host name
dataset.extractUID(datasetLocation);
dataset.extractHost(datasetLocation);
// Get an array of columns
$.getJSON(dataset.columnsURL(), function(data, textstatus) {
dataset.columnsCallback(data);
allColumns = $("#datasetForm #allColumns:checked").val() != null;
annotation = $("#columnForm #annotation")[0];
lat = $("#columnForm #lat")[0];
lon = $("#columnForm #long")[0];
// Construct select lists
$.each(dataset.columns, function(i, column) {
// Only look at non-hidden columns for lat/long data
if ( column.flags == null || $.inArray("hidden", column.flags) == -1 ) {
addOption(annotation, columnToSelect(column));
// Make all possible columns available for lat/long,
// otherwise try to be smart
if ( allColumns ) {
addOption(lat, columnToSelect(column));
addOption(lon, columnToSelect(column));
} else {
s = column.name.toLowerCase();
if ( s == "x" || s.indexOf('long') >= 0 ) {
addOption(lon, columnToSelect(column));
} else if ( s == "y" || s.indexOf('lat') >= 0 ) {
addOption(lat, columnToSelect(column));
}
}
}
});
// Show user interface
$("#columnForm").show('fast');
});
});
$("#columnForm").submit( function(e) {
e.preventDefault();
latID = parseInt($("#columnForm #lat").val()) + 6;
longID = parseInt($("#columnForm #long").val()) + 6;
annotationID = parseInt($("#columnForm #annotation").val()) + 6;
annotations = annotationID != 6 ? true : false;
$.getJSON(dataset.rowsURL(), function(data, textstatus) {
dataset.rowsCallback(data);
map = new google.maps.Map(document.getElementById("map_canvas"), {
mapTypeId: google.maps.MapTypeId.ROADMAP,
zoom: 10
});
$.each(dataset.rows, function(i, row) {
latLong = new google.maps.LatLng(row[latID], row[longID]);
markerData = {
map: map,
position: latLong,
title: annotations ? row[annotationID] : ''
};
if ( i == 0 ) {
map.setCenter(latLong);
}
marker = new google.maps.Marker(markerData);
});
});
$("#map_canvas").show('fast');
});
});