Skip to content

Commit

Permalink
fixed point radius
Browse files Browse the repository at this point in the history
fixed point radius
  • Loading branch information
GISRedeDev committed Jan 26, 2025
1 parent f2f4590 commit 6165982
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion www/public_html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ <h5 class="modal-title" id="ModalPrivacyLabel">Privacy Policy</h5>
<script type="text/javascript">
window.mdebug = true;
</script>
<script src="./js/main.js?version=0.67" type="module"></script>
<script src="./js/main.js?version=0.68" type="module"></script>

<script type="text/javascript">
$(document).ready(function () {
Expand Down
10 changes: 5 additions & 5 deletions www/public_html/js/main.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
var API_URL = "./api/v2/";
var featureByName = {};

import * as _init from './init.js?version=0.72'
import * as _utils from './utils.js?version=0.672'
import * as _api from './api_requests.js?version=0.34'
import * as _worldLayer from './worldLayer.js?version=0.5'
import * as _init from './init.js?version=0.73'
import * as _utils from './utils.js?version=0.673'
import * as _api from './api_requests.js?version=0.35'
import * as _worldLayer from './worldLayer.js?version=0.51'
import * as _worldSubNationalLayer from './worldSubNationalLayer.js?version=0.82'
import * as _worldBoundariesLayer from './worldBoundariesLayer.js?version=0.462'
import * as _controlTable from './bottom_table.js?version=0.1653'
import * as _plotxyLayer from './plotxyLayer.js?version=0.35'
import * as _plotxyLayer from './plotxyLayer.js?version=0.36'
import * as _infoBox from './infoBox.js?version=0.22'

import * as _palette from './palette.js?version=0.222'
Expand Down
2 changes: 1 addition & 1 deletion www/public_html/js/plotxyLayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export function updateData(c, d, model, modelsList, _prSubNational) {
// }
let pointRadius=Math.round(Number(document.getElementById("chPointRadius").value));
if ($("#chPointPlot").is(":checked")) {
pointRadius=document.getElementById("chPointRadius").value;
pointRadius=Math.round(Number(document.getElementById("chPointRadius").value));
} else {
pointRadius=0;
}
Expand Down

0 comments on commit 6165982

Please sign in to comment.