【调度系统】广东民航医疗快线调度系统源代码
wzp
2024-12-06 0df39a8c5a45c6ff25411eace15d40a606f9769c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%Session.CodePage=65001%>  
<!--#include virtual="/inc/odbc.asp"-->
<!--#include file="JsonPost.gds"-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<%
imeis="868120135069851"
 
appUrl="http://api.gpsoo.net/1/devices/tracking"
 
args1="access_token="&access_token
args1=args1&"&account="&account&"&imeis="&imeis&"&time="&ToUnixTime(now(),0)
args1=args1&"&map_type=BAIDU"        '如果要显示在百度地图上,map_type=BAIDU此时返回的经纬度将经过baidu校准方式校准,如果要显示在google地图上,map_type=GOOGLE,此时返回的经纬度将经过google校准方式校准,map_type如果不填,则返回原始经纬度
 
 
HTMLCODE= GetBody(appUrl,args1)
'Response.Write args1&"<br><br>"
'HTMLCODE= PostBody(appUrl,args1)
Response.Write HTMLCODE &"<br>"
%>