前言 pytestconfig是pytest的一个内置fixture,可以获取上下文,它的作用跟 request.config 是一样的,可以获取配置对象。 pytestconfig的源代码 @fixture(scope="session") def pytestconfig(request: Fi ...
分类:
其他好文 时间:
2021-07-26 16:56:21
阅读次数:
0
function dms2mod(markers_dms_file, model_file, image_file) %%%%% Convert Dynamo markers (.dms files) into IMOD format model files (.mod) %%%%% Require ...
分类:
其他好文 时间:
2021-07-05 18:56:14
阅读次数:
0
<template> <div class="row"> <el-amap id="map" vid="amapDemo" :zoom="zoom" :center="center"> <el-amap-marker v-for="marker in markers" :key="marker.id ...
分类:
其他好文 时间:
2021-03-18 14:39:11
阅读次数:
0
pytest一些简单参数 中8.4问题的补充 pytest.ini 可改变pytest的运行方式 mark标记 文件格式: [pytest] markers= 标记名 文件位置在项目的根目录,如下图 添加并保持后,可通过 pytest --markers查看,文件前一行即为刚写入的配置 addopt ...
分类:
其他好文 时间:
2021-01-25 11:30:58
阅读次数:
0
百度地图SDK 如何选中指定的marker(覆盖物)进行操作(删除) 在addOverlay之前,增加markers的属性id,并赋值 1 function markerDevice(points, infoWindows, myicon,devicebarcode) { 2 var markers ...
分类:
其他好文 时间:
2020-11-06 02:11:50
阅读次数:
19
可以通过命令行查看所有marker,包括内置和自定义的 pytest --markers 内置marker 内置marker本文先讲usefixtures 、filterwarnings 、skip 、skipif 、xfail这5个。参数化的marker我会写在《pytest参数化》中,hook的 ...
分类:
其他好文 时间:
2020-09-24 20:55:27
阅读次数:
31
官方的demo是这样的:地址:[http://lbs.amap.com/api/javascript-api/example/infowindow/add-infowindows-to-multiple-markers] <script type="text/javascript"> //初始化地图 ...
分类:
其他好文 时间:
2020-08-25 18:46:38
阅读次数:
161
//去除默认的字符串双引号,代码已封号结尾 .prettierrc.json { "singleQuote": true, "semi": false } .eslintrc.js rules中设置规则: "off" 或 0 - 关闭这个规则检查 "warn" 或 1 - 开启这个规则检查并提示(不 ...
分类:
其他好文 时间:
2020-08-10 18:41:56
阅读次数:
176
首先在项目里面install react-amap 我用的自定义图标是svg格式的,可以自行替换成本地icon import React, { Component } from 'react' import { Map, Markers } from 'react-amap' import { Ic ...
分类:
其他好文 时间:
2020-07-09 15:03:25
阅读次数:
155
一、获取个人定位信息(使用map、markers组件) wx.getLocation({ type: 'gcj02', success: (res)=> { let latitude = res.latitude let longitude = res.longitude this.setData( ...
分类:
微信 时间:
2020-06-08 10:38:16
阅读次数:
112