Ignore:
Timestamp:
Oct 21, 2015, 3:49:03 AM (9 years ago)
Author:
ldelgass
Message:

Add zoom camera to extent (fit to vertical FOV) by layer or by explicit bounds.
Add support for image layer using ArcGIS server driver. Map projection must
use a projected profile, and "geodetic"/"wgs84"/"plate-carre" are not permitted
as map profiles: use epsg:32663 for equirectangular instead. This has linear
units in meters, not angular units in X/Y.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • geovis/trunk/ResponseQueue.cpp

    r4629 r5915  
    4848#ifdef QUEUE_ONLY_ONE_FRAME
    4949    /* Examine the list and remove any queued responses of the same type. */
     50#ifdef TRACE_RESPONSE_QUEUE
    5051    TRACE("Before # of elements is %d", _list.size());
     52#endif
    5153    for (std::list<Response *>::iterator itr = _list.begin();
    5254         itr != _list.end();) {
     
    7173    /* Add the new response to the end of the list. */
    7274    _list.push_back(response);
     75#ifdef TRACE_RESPONSE_QUEUE
    7376    TRACE("After # of elements is %d", _list.size());
     77#endif
    7478    if (sem_post(&_ready) < 0) {
    7579        ERROR("can't post semaphore: %s", strerror(errno));
     
    103107        response = _list.front();
    104108        _list.pop_front();
     109#ifdef TRACE_RESPONSE_QUEUE
    105110        TRACE("Dequeued response of type %d", response->type());
     111#endif
    106112    }
    107113    if (pthread_mutex_unlock(&_idle) != 0) {
Note: See TracChangeset for help on using the changeset viewer.