free food icons

food icons

Chinese foods

https://www.flaticon.com/categories/food-and-restaurant

https://www.flaticon.com/search?word=noodles&category_id=52

https://www.vecteezy.com/free-vector/chinese-food-icon

https://image.flaticon.com/icons/svg/2943/2943064.svg

geo location

/*___meta___touch/module/util/location.09496ed8.js*/
define(["mars-webloc.umd.min.js"], function(a) {
function b(b, c) {
if (!a)
return void (c && c({
code: 1,
message: "失败"
}));
var d = {
project: "webloc",
city: !0,
key: "459fa549de39b5b9dddd147d0b240115"
};
a.getCurrentPosition(d, function(a, d) {
if (a)
return console.log("err====>", a),
void (c && c({
code: 1,
messag: "失败"
}));
console.log("aha", d, d.geo.latitude, d.geo.longitude);
var e = {
coords: {
latitude: d.geo.latitude,
longitude: d.geo.longitude
}
};
b && b(e)
})
}
return {
getLocation: b
}
});

H5 / 小程序

美食 app


xgqfrms 2012-2020

www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!


随机推荐

  1. 一例 Go 编译器代码优化 bug 定位和修复解析

    https://mp.weixin.qq.com/s/Tyl6dSb7mHBuqqN6WvEuaw

  2. 接口 Interfaces

    Interfaces - zope.interface 5.0.2.dev0 documentation https://zopeinterface.readthedocs.io/en/latest/ ...

  3. 【转载】【Python模块】datetime

    原文地址 一.datetime模块介绍 (一).datetime模块中包含如下类: 类名 功能说明 date 日期对象,常用的属性有year, month, day time 时间对象 datetim ...

  4. okhttp踩坑

    ResponseBody.string()   平常我们用的客户端http调用工具一般是RestTemplate,HttpClient,okhttp,以前使用过前两者,没咋接触过okhttp,我看公司 ...

  5. Docker安装mysql5.7并且配置主从复制

    Docker安装mysql5.7并且配置主从复制 一.拉取mysql镜像 二.创建文件docker.cnf 2.1 mysql主机(192.168.21.55:3307) 2.1.1 创建文件夹 2. ...

  6. Java面试题及解析

    面试题 解析 1 2 3 Join Sleep-线程睡眠 Yiedld-线程让步 sleep与yield方法区别 isAlive 终止线程 面试题 1.下列单词属于java访问修饰符的有(A,B, C ...

  7. 4. DHCP配置(Windows2012)

    1.点击服务器管理器 2.选择添加角色和功能 3. 按照添加角色和功能向导来添加 保持默认,下一步 保持默认,下一步 保持默认,下一步 勾选DHCP服务器,在弹出的小窗点击添加功能. 保持默认,下一步 ...

  8. Codeforces错题本

    为什么我这么菜啊QAQ Codeforces 1364C

  9. POJ - 3376 Finding Palindromes(拓展kmp+trie)

    传送门:POJ - 3376 题意:给你n个字符串,两两结合,问有多少个是回文的: 题解:这个题真的恶心,我直接经历了5种错误类型 : ) ... 因为卡内存,所以又把字典树改成了指针版本的. 字符串 ...

  10. hdu4920Matrix multiplication (矩阵,bitset)

    Problem Description Given two matrices A and B of size n×n, find the product of them. bobo hates big ...