云图怎样设置支付宝里的家乐福全国连锁店地图?

Posted mthoutai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了云图怎样设置支付宝里的家乐福全国连锁店地图?相关的知识,希望对你有一定的参考价值。

 摘要:本文具体解说了,怎样设置支付宝服务窗

商家怎样将自己的全国连锁店放置到云图上,而且在支付宝服务窗中提供地图查询功能。

本文所包括的地图服务为:

1、按城市查询门店地址;

2、列表模式和地图模式的方便切换;

3、调起打电话服务。更快与客户直接接触;

4、地图定位。导航,查周边。

 

----------------------------------------------------------------------------

一、支付宝

1、服务窗设置

登录支付宝服务窗:https://fuwu.alipay.com/platform/queryMenu.htm

自己定义菜单 -> 主菜单 -> 有子级菜单

填写子菜单名称,设置为跳转网页,而且放入网址。比方家乐福门店的网址:http://zhaoziang.com/amap/carrefour.html  

(家乐福门店地图的制作在第三部分 云图)

最后点击公布。

 

2、生成二维码

在服务未审核通过之前,仅仅能通过二维码进行关注。

账户设置 -> 基本信息

将您的二维码分享到微博。让很多其它的人知道你提供支付宝服务。

 

3、查看效果

打开支付宝client,扫描二维码。

 

立马加入 -> 立马查看 -> 成功案例 -> 家乐福

 

二、数据准备

1、门店数据

从家乐福官网上获取门店数据:http://www.carrefour.com.cn/Store/Store.aspx

存入excel中,并保存为CSV格式,uft-8编码。

(小于10000条数据)

 

该教程为演示样例。所以仅仅提供了北京和广州2个城市的门店数据。当中。广州数据为:

复制代码
name,address,tel,pic
金沙店,广州市海珠区工业大道北76-80号家信商业中心,(020) 8961 1230,http://imgs.carrefour.com.cn/Store/678_282_D34209E77BF840058C2B6F5CBAE27610.jpg
康王店,广州市荔湾区康王中路656号新光城市广场地下一、二层,(020) 8133 7619,http://imgs.carrefour.com.cn/Store/678_282_974C095FE09144C6B22C35CD95A8673D.jpg
万国店,广州海珠区前进路40号万国广场2-3楼,(020) 8426 2633,http://imgs.carrefour.com.cn/Store/678_282_A6F46DFAA74E488AB0F69413F4CE411A.jpg
新市店,广州市白云区机场路1339号百信广场家乐福,(020) 3663 5319,http://imgs.carrefour.com.cn/Store/678_282_594A48A43B994586955F7CFB4C340BA9.jpg
员村店,广州市天河区员村恒隆街3号,(020) 8564,http://imgs.carrefour.com.cn/Store/678_282_ED02FD7F9D1D4901A17144A9B3CC98D6.jpg
复制代码

 

2、登录云图,导入数据。

登录云图:http://yuntu.amap.com/datamanager/index.html

点击新建地图 

 

导入CSV表格数据,然后预览。

 

就能看到全国门店分布图了

 

三、云图的网页制作

为了让地图能够进行分城市查询,列表模式展示,调起打电话功能,调起地图导航、地图定位、搜索周边等功能。须要一段站点代码。

代码已经写好了,仅仅须要你增加key和tableID就可以。

1、获取key的位置:http://api.amap.com/key

2、获取云图tableID:进入你的云图->获取tableID

 

3、代码

复制代码
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<title>家乐福全国门店</title>
<style>
/** reset **/
body,html,div,p,li,ul,ol,p,select,h3{padding:0;margin:0;}
body,html{width:100%;height:100%;}
img{border:none;}
a{text-decoration:none;}
a:hover{color:#FF7F27;}
body{color:#333;font-family:"Microsoft YaHei";text-align:center;font-size:14px;}
img:hover{filter:alpha(opacity=90);-moz-opacity:0.9;-khtml-opacity: 0.9;opacity: 0.9;}
ul,li{list-style:none;}
/** clearfix **/
.clearfix{display:block;zoom:1;}
.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden;}
/** zhifubao **/
.header{width:100%;height:10%;float:left;background:#b3ffd7;}
.header select{width:60%;height:100%;float:left;padding:1px;font-size:16px;}
.btnChange{width:39%;height:100%;float:left;overflow:hidden;font-size:16px;line-height:3.5em;}
#map,#list{height:90%;width:100%;}
#list{text-align:left;}
.item{border-bottom:1px dashed #ccc;padding:10px;}
</style>
<script language="javascript" src="http://webapi.amap.com/maps?

v=1.2&key=【您的key】"></script> </head> <body onLoad="mapInit()"> <div class="header clearfix"> <select onchange="getType(this.options[this.selectedIndex].text)" > <option>北京</option> <option>广州</option> <option>全国</option> </select> <div class="btnChange"> <a id="iListBtn" onclick="display(\'list\',\'iMapBtn\');" href="javascript:void(0);">列表模式</a> <a id="iMapBtn" style="display:none;" onclick="display(\'map\',\'iListBtn\');" href="javascript:void(0);">地图模式</a> </div> </div> <div id="map" class="clearfix"></div> <div id="list" style="display:none;">正在读取数据……</div> </body> <script language="javascript"> function display(id1,id2){ document.getElementById(\'map\').style.display = \'none\'; document.getElementById(\'list\').style.display = \'none\'; document.getElementById(\'iListBtn\').style.display = \'none\'; document.getElementById(2019年十大连锁酒店排名是怎样的?

验证码短信,真的安全吗?

怎么在百度地图上搜索一家品牌店的名称从而显示出这家连锁品牌所有店面的地理位置?

支付宝的钱转余额宝在银行卡里可以取回吗?

支付宝店员通如何删除店员!急

SAP里的订单退货