- 1、本文档共7页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Google API 使用示例
Google API 使用示例1、调用Google earth 的完整示例htmlheadtitleSample/titlescriptsrc=/jsapi?key=ABCDEFG/scriptscripttype=text/javascriptvar ge; google.load(earth,1);function init(){ google.earth.createInstance(map3d, initCB, failureCB);}function initCB(instance){ ge = instance; ge.getWindow().setVisibility(true);}function failureCB(errorCode){} google.setOnLoadCallback(init);/script/headbodydivid=map3dstyle=height:400px;width:600px;/div/body/html2、设置图片地标// Create the placemark.var placemark = ge.createPlacemark();placemark.setName(placemark);// Define a custom icon.var icon = ge.createIcon();icon.setHref(/mapfiles/kml/paddle/red-circle.png);var style = ge.createStyle();//create a new stylestyle.getIconStyle().setIcon(icon);//apply the icon to the styleplacemark.setStyleSelector(style);//apply the style to the placemark// Set the placemarks location. var point = ge.createPoint();point.setLatitude(12.345);point.setLongitude(54.321);placemark.setGeometry(point);// Add the placemark to Earth.ge.getFeatures().appendChild(placemark);//设置图片的大小style.getIconStyle().setScale(5.0);3、自动调用地标说明(1)下例将setBalloon()移入自身的函数中,以便能通过点击按钮来调用。请注意,必须将placemark定义为全局变量,以便在showBalloon()函数的作用域中使用。scripttype=text/javascriptvar ge;var placemark; google.load(earth,1);function init(){ google.earth.createInstance(map3d, initCB, failureCB);}function initCB(instance){ ge = instance; ge.getWindow().setVisibility(true); ge.getNavigationControl().setVisibility(ge.VISIBILITY_SHOW);// Create the placemark. placemark = ge.createPlacemark(); placemark.setDescription(img src=/intl/en_ALL/images/logo.gif height=25px width=75px+pemFeature balloons/em accept most HTML./p+table border=1pxtrthAllowed/ththNot allowed/th/tr+trtdTables/tdtdIFRAMEs/td/tr+trtdFont styles/tdtd#60;embed#62; and #60;object#62; tags/td/tr+trtdetc.../tdtdnbsp;/td/tr/table+pCSS and JavaScript are not supported./p);// Set the placemarks location.var point = ge.createPoint(); point.set
文档评论(0)