Commit d693457e by Zachary Tong

Update editor with better description

parent e0a0013c
...@@ -9,12 +9,9 @@ ...@@ -9,12 +9,9 @@
} }
</style> </style>
<div ng-controller="map2"> <div ng-controller="map2">
<div class="row-fluid" > <div class="row-fluid" style="margin-bottom:20px">
<div class="span11"> <div class="span11">
The map panel uses 2 letter country or US state codes to plot concentrations The map panel is compatible with either Geopoints or two-letter country codes, depending on the graphing options. Left click to drag/pan map, scroll wheel (or double click) to zoom. Globes can be spun using ctrl-key + drag.
on a map. Darker terroritories mean more records matched that area. If
multiple queries are sent from a single panel the <strong>first query will be
displayed</strong>
</div> </div>
</div> </div>
...@@ -76,6 +73,8 @@ ...@@ -76,6 +73,8 @@
<td>Geopoints</td> <td>Geopoints</td>
<td> <td>
<button type="button" class="btn" bs-button <button type="button" class="btn" bs-button
data-placement="right"
bs-tooltip="'Compatible with Geopoint Type'"
ng-change="$emit('render')" ng-change="$emit('render')"
ng-class="{'btn-success': panel.display.geopoints.enabled}" ng-class="{'btn-success': panel.display.geopoints.enabled}"
ng-model="panel.display.geopoints.enabled">{{panel.display.geopoints.enabled|enabledText}}</button> ng-model="panel.display.geopoints.enabled">{{panel.display.geopoints.enabled|enabledText}}</button>
...@@ -87,7 +86,7 @@ ...@@ -87,7 +86,7 @@
<input type="text" style="width:100px" <input type="text" style="width:100px"
ng-change="$emit('render')" ng-change="$emit('render')"
data-placement="right" data-placement="right"
bs-tooltip="'Controls the size of the geopoints on the map. Units in kilometers (km)'" bs-tooltip="'Controls the size of the geopoints on the map.'"
ng-model="panel.display.geopoints.pointSize" ng-model="panel.display.geopoints.pointSize"
value="{{panel.display.geopoints.pointSize}}" /> value="{{panel.display.geopoints.pointSize}}" />
</td> </td>
...@@ -126,6 +125,8 @@ ...@@ -126,6 +125,8 @@
<td>Binning</td> <td>Binning</td>
<td> <td>
<button type="button" class="btn" bs-button <button type="button" class="btn" bs-button
data-placement="right"
bs-tooltip="'Compatible with Geopoint Type'"
ng-change="$emit('render')" ng-change="$emit('render')"
ng-class="{'btn-success': panel.display.binning.enabled}" ng-class="{'btn-success': panel.display.binning.enabled}"
ng-model="panel.display.binning.enabled">{{panel.display.binning.enabled|enabledText}}</button> ng-model="panel.display.binning.enabled">{{panel.display.binning.enabled|enabledText}}</button>
...@@ -195,7 +196,7 @@ ...@@ -195,7 +196,7 @@
<td> <td>
<button type="button" class="btn" bs-button <button type="button" class="btn" bs-button
data-placement="right" data-placement="right"
bs-tooltip="'Choropleths color country regions according to your selected field. Only compatible with Country-Coded fields'" bs-tooltip="'Choropleths color country regions according to your selected field. Compatible with Country-Coded fields'"
ng-change="$emit('render')" ng-change="$emit('render')"
ng-class="{'btn-success': panel.display.choropleth.enabled}" ng-class="{'btn-success': panel.display.choropleth.enabled}"
ng-model="panel.display.choropleth.enabled">{{panel.display.choropleth.enabled|enabledText}}</button> ng-model="panel.display.choropleth.enabled">{{panel.display.choropleth.enabled|enabledText}}</button>
...@@ -262,7 +263,7 @@ ...@@ -262,7 +263,7 @@
<tr> <tr>
<td>Map Projection</td> <td>Map Projection</td>
<td> <td>
<select ng-model="panel.display.data.type" ng-options="option.id as option.text for option in options.data.dropdown"></select> <select ng-model="panel.display.data.type" ng-options="option.id as option.text for option in panel.display.data.dropdown"></select>
</td> </td>
</tr> </tr>
</tbody> </tbody>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment