Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
tencentlbs avatar

Tencentmap Jsapi Gl Skill

  • 39 installs
  • 3 repo stars
  • Updated July 1, 2026
  • tencentlbs/tencentmap_jsapi_skills

Helps with backend & apis tasks.

About

tencentmap-jsapi-gl-skill is a Claude Code skill for backend & apis. It helps solo builders move faster with AI-assisted development.

  • tencentmap-jsapi-gl-skill
  • Backend & APIs
  • AI-coding skill

Tencentmap Jsapi Gl Skill by the numbers

  • 39 all-time installs (skills.sh)
  • Ranked #3,294 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
  • Data as of Jul 27, 2026 (Skillselion catalog sync)
npx skills add https://github.com/tencentlbs/tencentmap_jsapi_skills --skill tencentmap-jsapi-gl-skill

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs39
repo stars3
Last updatedJuly 1, 2026
Repositorytencentlbs/tencentmap_jsapi_skills

What it does

Helps with backend & apis tasks.

Files

references/jsapigl/demos/个性化地图_切换地图个性化样式.htmlHTMLGitHub ↗
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>切换地图个性化样式</title>
</head>
<script charset="utf-8" src="https://map.qq.com/api/gljs?v=1.exp&key=OB4BZ-D4W3U-B7VVO-4PJWW-6TKDJ-WPB77"></script>
<style type="text/css">
    html,
    body {
      height: 100%;
      margin: 0px;
      padding: 0px;
      position: relative;
      overflow: hidden;
    }

    #container {
      position: relative;
      width: 100%;
      height: 100%;
    }
    .btn {
      position: absolute;
      top: 30px;
      z-index: 1001;
      padding: 6px 8px;
    }
    .btn-left {
      left: 30px;
    }
    .btn-right {
      left: 150px;
    }
</style>

<body onload="initMap()">
    <div id="container"></div>
		<input type="button" class="btn btn-left" onclick="changeMapStyle('style2')" value="设置为样式2">
		<input type="button" class="btn btn-right" onclick="changeMapStyle('style3')" value="设置为样式3">
		<script type="text/javascript">
			var map;

			function initMap() {
				var center = new TMap.LatLng(39.984104, 116.307503);
				//初始化地图
				map = new TMap.Map("container", {
                  zoom: 12,//设置地图缩放级别
                  center: center,//设置地图中心点坐标
				});

			}
			
			// 动态设置个性化样式
			function changeMapStyle(styleId) {
				map.setMapStyleId(styleId);
			}
    </script>
</body>

</html>

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.