小编Raj*_*jan的帖子

openlayers中基于规则的样式3

我试图在openlayers 3中做基于规则的样式,这是我的代码:

<!DOCTYPE html>
<html>
<head>
<title>CONFIG</title>


<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="http://openlayers.org/en/v3.8.2/css/ol.css" type="text/css">
<script src="http://openlayers.org/en/v3.8.2/build/ol.js"></script>

</head>
<body>
<div class="container-fluid">

<div class="row-fluid">
  <div class="span12">
    <div id="map" class="map"></div>
  </div>
</div>
<script>

    var layerStyle   = {
         default: {
        style: new ol.style.Style({
        stroke: new ol.style.Stroke({
        color: 'rgba(0, 0, 0, 1.0)',
        width: 0.5
            }),
        fill: new ol.style.Fill({
        color: 'rgba(0, 255, 0, 0.5)'
            })
          })
        },

        filter: [{
        type: "AND",
        rules: [{
            type: "==",
            property: "CODE",
            value: "16"
        }, {
            type: …
Run Code Online (Sandbox Code Playgroud)

openlayers-3

6
推荐指数
1
解决办法
2219
查看次数

标签 统计

openlayers-3 ×1