Commit ad42f2a8 authored by 黄奎's avatar 黄奎

页面修改

parent 39a4bb40
...@@ -28,7 +28,9 @@ ...@@ -28,7 +28,9 @@
} }
}); });
</script> </script>
<script type="text/javascript" src="http://www.google.cn/maps/api/js?key=AIzaSyAZ5MIfzicStzKbIkbI3RcBBeZBjQFKsp0&libraries=geometry&language=zh_CN"></script> <script type="text/javascript"
src="http://www.google.cn/maps/api/js?key=AIzaSyAZ5MIfzicStzKbIkbI3RcBBeZBjQFKsp0&libraries=geometry&language=zh_CN">
</script>
<script> <script>
(function ($) { (function ($) {
var supportedCSS, styles = document.getElementsByTagName("head")[0].style, var supportedCSS, styles = document.getElementsByTagName("head")[0].style,
...@@ -188,7 +190,8 @@ ...@@ -188,7 +190,8 @@
this._container.style.height = height; this._container.style.height = height;
this._container.style.position = "absolute"; this._container.style.position = "absolute";
this._container.setAttribute('coordsize', width - 1 + ',' + (height - this._container.setAttribute('coordsize', width - 1 + ',' + (height -
1)); // This -1, -1 trying to fix ugly problem with small displacement on IE 1
)); // This -1, -1 trying to fix ugly problem with small displacement on IE
this._container.appendChild(this._vimage); this._container.appendChild(this._vimage);
this._rootObj.appendChild(this._container); this._rootObj.appendChild(this._container);
...@@ -309,7 +312,8 @@ ...@@ -309,7 +312,8 @@
._heightHalf); // we move image back to its orginal ._heightHalf); // we move image back to its orginal
this._cnv.rotate(angle); // rotate image this._cnv.rotate(angle); // rotate image
this._cnv.translate(-this._widthHalf, -this this._cnv.translate(-this._widthHalf, -this
._heightHalf); // move image to its center, so we can rotate around its center ._heightHalf
); // move image to its center, so we can rotate around its center
this._cnv.scale(this._aspectW, this._aspectH); // SCALE - if needed ;) this._cnv.scale(this._aspectW, this._aspectH); // SCALE - if needed ;)
this._cnv.drawImage(this._img, 0, 0); // First - we draw image this._cnv.drawImage(this._img, 0, 0); // First - we draw image
} }
...@@ -340,8 +344,10 @@ ...@@ -340,8 +344,10 @@
function inherits(childCtor, parentCtor) { function inherits(childCtor, parentCtor) {
/** @constructor */ /** @constructor */
function tempCtor() {}; function tempCtor() {};
if (parentCtor && parentCtor.prototype) {
tempCtor.prototype = parentCtor.prototype; tempCtor.prototype = parentCtor.prototype;
childCtor.superClass_ = parentCtor.prototype; childCtor.superClass_ = parentCtor.prototype;
}
childCtor.prototype = new tempCtor(); childCtor.prototype = new tempCtor();
/** @override */ /** @override */
childCtor.prototype.constructor = childCtor; childCtor.prototype.constructor = childCtor;
...@@ -774,6 +780,7 @@ ...@@ -774,6 +780,7 @@
} }
this.eventDiv_.style.display = this.labelDiv_.style.display; this.eventDiv_.style.display = this.labelDiv_.style.display;
}; };
function MarkerWithLabel(opt_options) { function MarkerWithLabel(opt_options) {
opt_options = opt_options || {}; opt_options = opt_options || {};
opt_options.labelContent = opt_options.labelContent || ""; opt_options.labelContent = opt_options.labelContent || "";
...@@ -829,14 +836,19 @@ ...@@ -829,14 +836,19 @@
google.maps.MarkerWithLabel = MarkerWithLabel; google.maps.MarkerWithLabel = MarkerWithLabel;
</script> </script>
<script> <script>
document.ondragover = function (e) { e.preventDefault(); }; document.ondragover = function (e) {
document.ondrop = function (e) { e.preventDefault(); }; e.preventDefault();
};
document.ondrop = function (e) {
e.preventDefault();
};
$(document).on("dragstart", function (e) { $(document).on("dragstart", function (e) {
return false; return false;
}); });
</script> </script>
<!-- <script src="http://pv.sohu.com/cityjson?ie=utf-8"></script> --> <!-- <script src="http://pv.sohu.com/cityjson?ie=utf-8"></script> -->
<script type="text/javascript" src="https://webapi.amap.com/maps?v=1.3&key=86f2f611126f36b93cf2ef280300524f&plugin=AMap.CitySearch"></script> <script type="text/javascript"
src="https://webapi.amap.com/maps?v=1.3&key=86f2f611126f36b93cf2ef280300524f&plugin=AMap.CitySearch"></script>
<link rel="icon" href="<%= BASE_URL %>favicon.ico"> <link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title>athena</title> <title>athena</title>
</head> </head>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment