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. Maven 本地仓库

    概述 Maven 的本地资源库是用来存储所有项目的依赖关系(插件 Jar 和其他文件,这些文件被 Maven 下载)到本地文件夹.很简单,当你建立一个 Maven 项目,所有相关文件将被存储在你的 M ...

  2. a.default.ERROR.httpAjax is not a function

    原因1: 使用的是jQuery的slim构建,它删除了一些东西,ajax就是其中之一. 解决方法: 在此处下载常规(压缩或非压缩)版本的jQuery并将其包含在您的项目中. 原因2: 使用其他库引起了 ...

  3. [Python]编码声明:是coding:utf-8还是coding=utf-8呢

    PEP 263 -- Defining Python Source Code Encodings | Python.org https://www.python.org/dev/peps/pep-02 ...

  4. linux 文件结构体和文件描述符号的学习

    https://blog.csdn.net/cywosp/article/details/38965239

  5. How Interfaces Work in Go

    research!rsc: Go Data Structures: Interfaces https://research.swtch.com/interfaces How Interfaces Wo ...

  6. 服务注册中心:Eureka

    第一章 注册中心介绍 1.1.什么是注册中心 注册中心可以说是微服务架构中的"通讯录",它记录了服务和服务地址的映射关系.在分布式系统中,服务会注册到这里,当服务需要调用其它服务时 ...

  7. docker版mysql的使用和配置(2)——docker版mysql的dockerfile

    既然目标是定制满足自己需要的dockerfile,那么就来看看mysql的dockerfile长什么样. dockerfile选择的是 https://github.com/mysql/mysql-d ...

  8. centos6.5安装KVM,并在KVM中安装虚拟6.5系统

    =============================环境搭建================================================== 1.检查CPU信息 KVM 需要 ...

  9. ST在keil下开发时候文件options配置的一些小技巧

    作者:良知犹存 转载授权以及围观:欢迎添加微信公众号:Conscience_Remains 总述     这是之前ST芯片载keil下开发时候总结的一些代码文件options配置小笔记,虽然不是很复杂 ...

  10. XV6学习(12)Lab lock: Parallelism/locking

    代码在github上 这一次实验是要对XV6内部的锁进行优化,减少锁争用,提高系统的性能. Memory allocator (moderate) 第一个实验是对XV6内核的内存页面分配器进行改进,改 ...