Advertisement
Advertisement
| 09.21.2008 at 03:01PM PDT, ID: 23749965 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
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: |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAADLvWIatVgZigVMhkgJ1pCBQTU3iuhSWej-OvfROlbiVWP1UIjhQPJeMn3hEHd47pskO_7DQLVSXW5A" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
function load() {
if (GBrowserIsCompatible())
{
var map = new GMap2(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(55.8000, -3.6000), 5);
//Sets a minimum zoom
var minmapscale = 5;
var mapTypes = map.getMapTypes();
for (var i=0; i<mapTypes.length; i++)
{
mapTypes[i].getMinimumResolution = function() {return minmapscale;}
}
//
}
else
{
alert("<p class='style1' align='center'><b>Google Maps is not compatible with this browser!</b><br/>As a result we could not display this map.");
}
}
//]]>
</script>
</head>
<body onload="load()" onunload="GUnload()">
<div style="border:#CCCCCC solid 1px; padding:2px; width:350px; height:500px;">
<div id="map" style="width:350px; height:500px;"></div></div>
<form action="" method="get">
<input name="lat" type="hidden" value="" />
<input name="lon" type="hidden" value="" />
</form>
</body>
</html>
|