Low Activity

News

  Analyzed 3 days ago based on code collected 3 days ago.
 
Posted 7 days ago by radioman
summary: GMap.NET.Core: internal optimisations using IEqualityComparer
date: Thu Jun 06 11:50:42 2013 +0300
user: radioman
tag: tip
changeset: 881:3c00e5afc71c
Posted 7 days ago by persa
Do you see the map content at design time after this fix? I only get a blank rectangle.
Posted 8 days ago by radioman
GMap.NET.Core: added option to BypassCache when using dynamic tile generation
Posted 8 days ago by radioman
p.s. it's a misleading demo, actually you have to create new map provider and use this function to generate tiles:
Bitmap tempImage = gheat.GHeat.GetTile(Points, "classic", (int)MapControl.Zoom, x, y);
Posted 8 days ago by radioman
you don't have to put these fields in pointlatlng class, make your own struct/class and add all fields you need: point, weight, data, etc...
Posted 8 days ago by ambiente
I tried to add the following to GPoint and PointLatLng classes in GMap

This are the errors

Field 'GMap.NET.PointLatLng.weight' must be fully assigned before control is returned to the caller
Field 'GMap.NET.PointLatLng.data' ... [More] must be fully assigned before control is returned to the caller

Changing to return this.weight; and return this.data; gives me the same error.

private decimal? weight;
private object data;

public decimal? Weight
{
get
{
return this.weight;
}
set
{
weight = value;
}
}
public object Data
{
get
{
return this.data;
}
set
{
data = value;
}
} [Less]
Posted 8 days ago by ahmadii
radioman wrote:

turn the freaking debugger on ;}

what it means?
i don't know how to do that
could you please explain more?
thanks
Posted 8 days ago by radioman
turn the freaking debugger on ;}
Posted 8 days ago by ahmadii
radioman wrote:

investigate, do some debugging, maybe it's system specific

i have tested it on 4 different system.
but all of them takes some times to load.
my gmdb is around 2.3 GB
and it takes 30 seconds to load the application
is it normal?
Posted 8 days ago by radioman
investigate, do some debugging, maybe it's system specific
 

 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.