Rapids & Rivers

Local Ottawa WhiteWater

Boatwerks - Ontario River Levels
Myosis - Quebec River Info
Gatineau River Level
AW - American River Info
USGS Real-Time Water Data
USGS - New York
Northeast River Forecast Center (slow site)
Environment Can
River Flows & Water Levels Canada
Les Portageurs
Index of Rivers
List of Rivers
CRCA
Canadian Canoe Routes

Google Maps JavaScript API Example

//

Google

google.load("earth", "1");

var ge = null;

function init() {
google.earth.createInstance("map3d", initCB, failureCB);
}

function initCB(object) {
ge = object;
ge.getWindow().setVisibility(true);

google.earth.addEventListener(ge.getGlobe(), "mousedown", showCoordinates);

}

function showCoordinates(kmlEvent) {
document.getElementById('Latitude').value = kmlEvent.getLatitude();
document.getElementById('Longitude').value = kmlEvent.getLongitude();
}

function failureCB(object) {
alert('load failed');
}

function unload() {
ge = null;
}