当前位置:网站首页>Tencent map circle
Tencent map circle
2022-07-06 14:02:00 【Little boy, handsome Yang Shaoping】
1: Coordinate pick-up address https://lbs.qq.com/getPoint/
2: Online code running address https://lbs.qq.com/webDemoCenter/javascriptV2/polygon/circleRadius
3: legend
4: Code
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title> Dynamically change the radius of a circle </title>
<style type="text/css">
html,body{
width:100%;
height:100%;
}
#container{
width:100%;
height:90%;
}
*{
margin:0px;
padding:0px;
}
body, button, input, select, textarea {
font: 12px/16px Verdana, Helvetica, Arial, sans-serif;
}
#info {
margin-top: 10px;
}
</style>
<script charset="utf-8" src="https://map.qq.com/api/js?v=2.exp&key=OB4BZ-D4W3U-B7VVO-4PJWW-6TKDJ-WPB77"></script>
</script>
<script>
function init(){
var center=new qq.maps.LatLng(36.070299,120.370787);
var map=new qq.maps.Map(document.getElementById("container"),{
center:center,
zoom:14
});
// Set the color and transparency of the circular cover rgba
var circle_color = new qq.maps.Color(
Number(2),
Number(3),
Number(4),
0.1);
var circle=new qq.maps.Circle({
map:map,
center:center,
radius:300,
fillColor:circle_color,
strokeWeight:2
});
var radius=300;
setInterval(function(){
circle.setRadius(radius);
radius=radius+100;
if(radius>1000){
radius=300;
};
},5000);
}
window.οnlοad=init;
</script>
</head>
<body οnlοad="init()">
<div id="container"></div>
<div id="info">
<p> every other 500 The radius of the millisecond circular cover changes once .</p>
</div>
</body>
</html>
边栏推荐
- UGUI—Text
- 7-5 走楼梯升级版(PTA程序设计)
- 1. Preliminary exercises of C language (1)
- 实验六 继承和多态
- Strengthen basic learning records
- FAQs and answers to the imitation Niuke technology blog project (III)
- Inaki Ading
- 7-11 机工士姆斯塔迪奥(PTA程序设计)
- . Net6: develop modern 3D industrial software based on WPF (2)
- 4. Branch statements and loop statements
猜你喜欢
[dark horse morning post] Shanghai Municipal Bureau of supervision responded that Zhong Xue had a high fever and did not melt; Michael admitted that two batches of pure milk were unqualified; Wechat i
Principles, advantages and disadvantages of two persistence mechanisms RDB and AOF of redis
Write a program to simulate the traffic lights in real life.
Record a penetration of the cat shed from outside to inside. Library operation extraction flag
A piece of music composed by buzzer (Chengdu)
1. First knowledge of C language (1)
MATLAB打开.m文件乱码解决办法
Read only error handling
QT meta object qmetaobject indexofslot and other functions to obtain class methods attention
Nuxtjs quick start (nuxt2)
随机推荐
Nuxtjs快速上手(Nuxt2)
Hackmyvm target series (7) -tron
搭建域环境(win)
HackMyvm靶机系列(3)-visions
Strengthen basic learning records
7-4 hash table search (PTA program design)
[面試時]——我如何講清楚TCP實現可靠傳輸的機制
实验六 继承和多态
【头歌educoder数据表中数据的插入、修改和删除】
MySQL lock summary (comprehensive and concise + graphic explanation)
Interpretation of iterator related "itertools" module usage
实验四 数组
[面试时]——我如何讲清楚TCP实现可靠传输的机制
7-1 输出2到n之间的全部素数(PTA程序设计)
Canvas foundation 1 - draw a straight line (easy to understand)
Experiment five categories and objects
Hackmyvm target series (3) -visions
Canvas foundation 2 - arc - draw arc
实验七 常用类的使用
深度强化文献阅读系列(一):Courier routing and assignment for food delivery service using reinforcement learning