POST
|
Hello all, Do you have some documentation for correct installation and set up to Geoevent in ArcGIS Server cluster? All machines are in the same cluster in ArcGIS server and are running and have geoevent extension installed, but when any machine try to start the geovenet manager ( https://localhost:6443/geoeven t/manager), the display show this message: No services have been found. Thanks in advance
... View more
07-08-2016
10:13 AM
|
0
|
0
|
18
|
POST
|
Thank you Andrew Stauffer. So i attentive to the solve for this bug. Regards, -Katheryn
... View more
05-27-2016
12:57 PM
|
0
|
0
|
14
|
POST
|
I have this issue with the Censos and Servicios Publicos tags
... View more
05-18-2016
10:13 AM
|
0
|
2
|
14
|
POST
|
Yes Jennifer all items are shared with everyone and the Open Data group. http://esri-colombia.maps.arcgis.com/home/group.html?id=09a9f0ceeabe4bf696bda1fe0a194ea5 : Open Data Group If you search Censo Región Andina Sur 2005 in datosabiertos.esri.co --> you could find it but if you search Censo Region Orinoquia 2005 in datosabiertos.esri.co --> you could find it but the result doesn´t show the description or downloads options (white display) All this layers belong to Censos tag , if you search this tag the site don´t show all results.
... View more
05-18-2016
10:11 AM
|
0
|
0
|
14
|
POST
|
I try a lot things but don´t work. I inspection (F12) the website and look the console code and the messages make me think the open data site are look some features id of the AGOL content differents to the true feature id in the AGOL content
... View more
05-18-2016
10:01 AM
|
0
|
0
|
14
|
POST
|
Hello all, help me please. Our open data site --- > datosabiertos.esri.co Issue : 1) When i search for Censo tag , the site only return in the display 4 results of 10. The other six elements exists in the same AGOL group that the other features. When i try search any feature (e.g. : Censo orinoquia ) of the 6 hidden in the above screenshot. The search return the results but doesn´t show the description or downloads options. Thank you in advance, ArcGIS Open DataArcGIS Open Data communityAndrew Stauffer@ Katheryn Zulay Peraza | Specialist Data Engineer. Esri Colombia
... View more
05-18-2016
09:39 AM
|
0
|
7
|
4067
|
POST
|
I solve the issue : 1) Remove in the Header HTML the next line code for enable the carousel : <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script> 2) Include in the Header HTML the next script for enable the carousel without conflicts with the bootstrap included in Open Data Site: <script> /* ======================================================================== * Bootstrap: carousel.js v3.3.6 * http://getbootstrap.com/javascript/#carousel * ======================================================================== * Copyright 2011-2015 Twitter, Inc. * Licensed under MIT ( https://github.com/twbs/bootstrap/blob/master/LICENSE ) * ======================================================================== */ +function ($) { 'use strict'; // CAROUSEL CLASS DEFINITION // ========================= var Carousel = function (element, options) { this.$element = $(element) this.$indicators = this.$element.find('.carousel-indicators') this.options = options this.paused = null this.sliding = null this.interval = null this.$active = null this.$items = null this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this)) this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element .on('mouseenter.bs.carousel', $.proxy(this.pause, this)) .on('mouseleave.bs.carousel', $.proxy(this.cycle, this)) } Carousel.VERSION = '3.3.6' Carousel.TRANSITION_DURATION = 600 Carousel.DEFAULTS = { interval: 5000, pause: 'hover', wrap: true, keyboard: true } Carousel.prototype.keydown = function (e) { if (/input|textarea/i.test(e.target.tagName)) return switch (e.which) { case 37: this.prev(); break case 39: this.next(); break default: return } e.preventDefault() } Carousel.prototype.cycle = function (e) { e || (this.paused = false) this.interval && clearInterval(this.interval) this.options.interval && !this.paused && (this.interval = setInterval($.proxy(this.next, this), this.options.interval)) return this } Carousel.prototype.getItemIndex = function (item) { this.$items = item.parent().children('.item') return this.$items.index(item || this.$active) } Carousel.prototype.getItemForDirection = function (direction, active) { var activeIndex = this.getItemIndex(active) var willWrap = (direction == 'prev' && activeIndex === 0) || (direction == 'next' && activeIndex == (this.$items.length - 1)) if (willWrap && !this.options.wrap) return active var delta = direction == 'prev' ? -1 : 1 var itemIndex = (activeIndex + delta) % this.$items.length return this.$items.eq(itemIndex) } Carousel.prototype.to = function (pos) { var that = this var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active')) if (pos > (this.$items.length - 1) || pos < 0) return if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid" if (activeIndex == pos) return this.pause().cycle() return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos)) } Carousel.prototype.pause = function (e) { e || (this.paused = true) if (this.$element.find('.next, .prev').length && $.support.transition) { this.$element.trigger($.support.transition.end) this.cycle(true) } this.interval = clearInterval(this.interval) return this } Carousel.prototype.next = function () { if (this.sliding) return return this.slide('next') } Carousel.prototype.prev = function () { if (this.sliding) return return this.slide('prev') } Carousel.prototype.slide = function (type, next) { var $active = this.$element.find('.item.active') var $next = next || this.getItemForDirection(type, $active) var isCycling = this.interval var direction = type == 'next' ? 'left' : 'right' var that = this if ($next.hasClass('active')) return (this.sliding = false) var relatedTarget = $next[0] var slideEvent = $.Event('slide.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) this.$element.trigger(slideEvent) if (slideEvent.isDefaultPrevented()) return this.sliding = true isCycling && this.pause() if (this.$indicators.length) { this.$indicators.find('.active').removeClass('active') var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)]) $nextIndicator && $nextIndicator.addClass('active') } var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid" if ($.support.transition && this.$element.hasClass('slide')) { $next.addClass(type) $next[0].offsetWidth // force reflow $active.addClass(direction) $next.addClass(direction) $active .one('bsTransitionEnd', function () { $next.removeClass([type, direction].join(' ')).addClass('active') $active.removeClass(['active', direction].join(' ')) that.sliding = false setTimeout(function () { that.$element.trigger(slidEvent) }, 0) }) .emulateTransitionEnd(Carousel.TRANSITION_DURATION) } else { $active.removeClass('active') $next.addClass('active') this.sliding = false this.$element.trigger(slidEvent) } isCycling && this.cycle() return this } // CAROUSEL PLUGIN DEFINITION // ========================== function Plugin(option) { return this.each(function () { var $this = $(this) var data = $this.data('bs.carousel') var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option) var action = typeof option == 'string' ? option : options.slide if (!data) $this.data('bs.carousel', (data = new Carousel(this, options))) if (typeof option == 'number') data.to(option) else if (action) data[action]() else if (options.interval) data.pause().cycle() }) } var old = $.fn.carousel $.fn.carousel = Plugin $.fn.carousel.Constructor = Carousel // CAROUSEL NO CONFLICT // ==================== $.fn.carousel.noConflict = function () { $.fn.carousel = old return this } // CAROUSEL DATA-API // ================= var clickHandler = function (e) { var href var $this = $(this) var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7 if (!$target.hasClass('carousel')) return var options = $.extend({}, $target.data(), $this.data()) var slideIndex = $this.attr('data-slide-to') if (slideIndex) options.interval = false Plugin.call($target, options) if (slideIndex) { $target.data('bs.carousel').to(slideIndex) } e.preventDefault() } $(document) .on('click.bs.carousel.data-api', '[data-slide]', clickHandler) .on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler) $(window).on('load', function () { $('[data-ride="carousel"]').each(function () { var $carousel = $(this) Plugin.call($carousel, $carousel.data()) }) }) }(jQuery); </script>
... View more
04-29-2016
07:23 AM
|
0
|
1
|
12
|
POST
|
Hello, I have the same issue. When i include in the Header HTML the next line code for enable the carousel : <script src=" https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js "></script> The download buttons on layers is disabled ( this occur in all web explorers) . So,Please,do you have some solution for solve it ? Daniel Fenton Thanks in advance
... View more
04-28-2016
10:12 AM
|
0
|
2
|
12
|
BLOG
|
Descubra la amplia colección de mapas, imágenes, herramientas y aplicaciones geográficas disponibles dentro del catálogo del Living Atlas del Mundo. Este contenido ha sido publicado por Esri, business partners y usuarios de la comunidad ArcGIS. El valor de este contenido está siendo reconocido por nuestros usuarios como importante dentro de la construcción de sus mapas y aplicaciones.
... View more
09-30-2015
09:22 AM
|
1
|
0
|
191
|
BLOG
|
Mapas atractivos (impresos y web) de alta calidad con base en los principios básicos del diseño cartográfico para conseguir mapas fáciles de interpretar para su audiencia a través de ArcGIS for Desktop y ArcGIS Online.
... View more
09-30-2015
09:20 AM
|
1
|
0
|
187
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:22 AM
|