OpenStreetMap logo OpenStreetMap

bbmiller's Notes

Notes submitted or commented on by bbmiller

Id Creator Description Created at Last changed
106269 bbmiller

Is Red Drive open to traffic again?

237637

bounds: (44.5756,-85.8993 - 44.5688,-85.8785)
osm.org/?box=yes&notes=yes&bbox=-85.8993%2C44.5688%2C-85.8785%2C44.5756
Map is missing data here. Missing road and only shows part of river

237634

bounds: (44.5767,-85.8989 - 44.5698,-85.8781)
osm.org/?box=yes&notes=yes&bbox=-85.8989%2C44.5698%2C-85.8781%2C44.5767
Map is missing data here. Does not show the river or road.

196084

Fairchild Ave becomes Park Place where it turns east. The little dead end is actually the end of Fairchild.

187168

Andrea and Fouad's Home:
Enter subdiivision at the intersection of Brady
and Cherry Hill.
Complimentary Valet Parking is Provided.
Contact #;s; (313)243-4500

163306 gregcrago

This road is UNPAVED going North

189649

bounds: (42.6349,-83.7876 - 42.6207,-83.746)
osm.org/?box=yes&notes=yes&bbox=-83.7876%2C42.6207%2C-83.746%2C42.6349
Map is missing data here. Not showing my subdivision on the map.

232261

bounds: (42.7477,-84.4881 - 42.7442,-84.48)
osm.org/?box=yes&notes=yes&bbox=-84.4881%2C42.7442%2C-84.48%2C42.7477
I don't have any problem

207613

mapdust 3102940: Red Fox Run, not Summit Court

158013 kokonikikoko

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Google Maps v3 API Example</title>
<style>
html, body, #map {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
div#footer {
position: fixed;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 18px;
margin: 0;
padding: 6px;
z-index: 2;
background: WHITE;
}
</style>
</head>
<body>
<div id="map" style="float: left;"></div>

<div id="footer">&copy; <a href="osm.org/copyright">OpenStreetMap</a> contributors</div>

<!-- bring in the google maps library -->
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>

<script type="text/javascript">
//Google maps API initialisation
var element = document.getElementById("map");

var map = new google.maps.Map(element, {
center: new google.maps.LatLng(57, 21),
zoom: 3,
mapTypeId: "OSM",
mapTypeControl: false,
streetViewControl: false
});

//Define OSM map type pointing at the OpenStreetMap tile server
map.mapTypes.set("OSM", new google.maps.ImageMapType({
getTileUrl: function(coord, zoom) {
return "http://tile.openstreetmap.org/" + zoom + "/" + coord.x + "/" + coord.y + ".png";
},
tileSize: new google.maps.Size(256, 256),
name: "OpenStreetMap",
maxZoom: 18
}));
</script>
</body>
</html>