Quantcast
Channel: MapWinGIS ActiveX Map and GIS Component
Viewing all 2341 articles
Browse latest View live

New Post: AxMap.ZoomToSelected sometimes zooms more than needed

$
0
0
Thank you very much Sergei.
My best regards

New Post: Compiling questions

$
0
0
Hey guys, I'm following the instructions here but it seems I'm still missing something.

This should be able to compile with VS2013 right? I'm running VS2013 Community which as I understand should be very similar to the normal VS pro versions.

It kinda looks like I need newer versions of 'cqlib.lib' and 'spatialindex-mw.lib'. I found them in support/lib/v100 but when I copied all that into a v120 folder it came up with an error that looks like it's saying the spatial index lib wants an older compiler.

This is what that error looks like:
error LNK2038: mismatch detected for '_MSC_VER': value '1600' doesn't match value '1800' in Identifier.obj C:\dev\MapwinGIS\src\SpatialIndex-mw.lib(DiskStorageManager.obj) MapWinGIS

I don't know if it's important but I had to make a couple changes just to make it this far.
  • Comment out line 58 in MapWinGIS.cpp
    I read something about AfxSetAmbientActCtx(bool) not being supported in VS2013 so maybe that's why it was giving an error?
  • Change the version number in the linker from 4.9.3.4 to 4.9
    Again, found something that said this changed recently and version numbers with more decades had to go somewhere else.
  • Remove mfcs100.lib from the linker input dependancies
    A holdout from an older version of VS?

New Post: Compiling questions

$
0
0
Hi, it's important which branch you are compiling. Master branch is still compiled with VS2010 (we didn't want to change runtime until the next 4.9.4 release). So, yes, it needs a bit of work to make it compile with VS2013, like rebuilding support libs and perhaps the issues that you mentioned. On the other hand, dev494 branch is already compiled with VS2013, so perhaps you can get some ideas from it. Please let me know if you have further problems doing it.

Hope this helps,
Sergei

New Post: Compiling questions

$
0
0
Okay I didn't even think to look for another branch! I'll give that a try, Thanks.

New Post: Clip two Shape with Mapwingis : Resulting shapefile has no shapes?

$
0
0
I just wanna to Clip two shapefile. There is an API function format :
Shapefile.Clip (bool SelectedOnlySubject, Shapefile sfOverlay, bool SelectedOnlyOverlay)
I start to write this.
    Dim sfOverlay As New MapWinGIS.Shapefile
    Dim sfinput As New MapWinGIS.Shapefile
    Dim sfClip As New MapWinGIS.Shapefile
    Dim index1 As Integer
    Dim index2 As Integer

        index1 = CbBInputLayer.SelectedIndex
        index2 = CbBOverlayClipLayer.SelectedIndex
        sfinput = FormMain.AxMapMain.get_Shapefile(index1)
        sfOverlay = FormMain.AxMapMain.get_Shapefile(index2)

    sfClip = sfinput.Clip(False, sfOverlay, False)
        If sfClip Is Nothing Then
            MessageBox.Show("Failed to calculate Clip :" + sfinput.ErrorMsg(sfinput.LastErrorCode))
            MessageBox.Show("Failed to calculate Clip :" + sfOverlay.ErrorMsg(sfOverlay.LastErrorCode))
            MessageBox.Show("Failed to calculate Clip :" + sfClip.ErrorMsg(sfClip.LastErrorCode))

        Else
            shape2.Add(sfClip)
        End If
the results is Nothingand

sfInput give Resulting shapefile has no shapes

sfOverlay give No Error

sfClip give Null Reference set to an instance of an object

how I can fix this? Is there any mistake?

New Post: Point symbol as a bold or italic character

$
0
0
Hi everyone,

How to set the point symbol to a bold or italic character?
I found AxMap_Deprecated.set_UDPointFontCharFont () which is deprecated.
Is this functionality is no longer available anymore?

regards

New Post: Clip two Shape with Mapwingis : Resulting shapefile has no shapes?

$
0
0
Hi, "sfInput give Resulting shapefile has no shapes " means that there is no intersection between your shapefiles. Whether it's true or not I don't know without seeing them.

Some tips:
  • AxMap.get_Shapefile() accepts layer handle which isn't necessarily equal to selected index in combobox (though it might be so). But the proper way to get layer handle is:
int layerHandle = axMap1.get_LayerHandle(layerPosition); 
// or
int layerHandle = axMap1.AddLayer(sf, true);
  • make sure that you are processing shapefiles you are intended to, by opening them directly; check if it works with some other shapefiles, we have some here;
  • if you are using latest version (4.9.3), you should use GlobalSettings.ApplicationCallback as described here. It can give more info about the problem;
  • if you are reasonably sure that you spotted a bug, please provide sample data so we can reproduce and fix it.
Regards,
Sergei

New Post: Point symbol as a bold or italic character


New Post: Drawings using mouse

$
0
0
Hi every one,

How to make drawing in a drawing layer by using mouse clicks, e.g the line must be a rubber-band line until double clicking, etc...

regards

New Post: Point symbol as a bold or italic character

$
0
0
Thanks Sergei.

Can I suggest the use of the font as an object instead of specifying its name. This give the opportunity of specifying all font options e.g. bold, italic,etc.
Can I post this as an issue or suggestion?

Thank u very much,
regards.

New Post: Point symbol as a bold or italic character

$
0
0
Can I post this as an issue or suggestion?
Adding separate properties for bold / italic can be easier, since to make MapWinGIS understand it, it should be COM class (stdole's StdFont most likely). But one way or another if you can't achieve the intended results, it's a legitimate feature request.

New Post: Compiling questions

$
0
0
Yeah, that was what I needed to compile the ocx. I was even able to get the normal branch to compile by recompiling the support libraries.

I think I'm missing something trying to compile the AxInterop.MapWinGIS.dll though. It compiles successfully, but when I try to use it, it looks like the AxMap class doesn't have AxHost as a base class. Gives a bunch of errors relating to all of the activex window controls. This happens on both branches.

The class declaration in AxMap.cs is "public class AxMap". Should it be something like "public class AxMap : AxHost" or am I looking in the wrong place?

New Post: Compiling questions

$
0
0
You don't need to compile AxInterop.MapWinGIS.dll yourself. It's .NET primary interop assembly for Map control. It's generated automatically when you add Map control to the form designer in Visual Studio. It also can be created manually using AxImp.exe utility, though it's rarely needed. Perhaps the source of confusion is our documentation project (in docs subfolder) - its purpose is generation of documentation, nothing else.

New Post: VPN blocking mapwingis tiles

$
0
0
sleschinski,

Thank you very much. When I have the proxy set to axMap1.Tiles.SetProxy("127.0.0.1", 8888); and fidler turned on the map tiles loads. But if fidler is turned off it does not. As I understand that proxy is for fidler it will not work when fidler is turned off. How ever the strange thing is the http requests (i.e. http://c.tile.openstreetmap.org/14/4703/6363.png )works fine in the web browser . I wonder if the VPN is blocking the API itself and not the link.

New Post: Compiling questions

$
0
0
That makes a lot more sense! Yeah, I was confused by the documentation project since it compiled a dll, didn't realize those were generated automatically. Looks like I've got it all working now, thanks for the help!

New Post: Custom provider for map tiles

$
0
0
Hi,

I use MapWinGIS to implement a service that uses tiles from custom provider in offline mode.
I followed the instructions in Documentation.
So, I set the new providerId to AxMap.Tiles.ProviderId, and I populate the cache db Type field by this providerId. However, nothing appears when executing.

If I change the Type field value to a predefined provider, e.g "0 for openstreetmap provider" and set it as the map provider every thing works well.

How to solve this problem?

Thanks,
regards

New Post: Clip two Shape with Mapwingis : Resulting shapefile has no shapes?

$
0
0
Thanks Sergei, i found my mistake. This function are working for another map. But the others it just not working. Is there any requirements that needed to use this function?

can i give an example from .shp that i wanna succes in?

Created Unassigned: Custom provider for map tiles [26006]

$
0
0
Hi,

I use MapWinGIS to implement a service that uses tiles from custom provider in offline mode.
I followed the instructions in Documentation.
So, I set the new providerId to AxMap.Tiles.ProviderId, and I populate the cache db Type field by this providerId. However, nothing appears when executing.

If I change the Type field value to a predefined provider, e.g "0 for openstreetmap provider" and set it as the map provider every thing works well.

How to solve this problem?

Thanks,
regards

New Post: how to get count ctEqualIntervals, ctNaturalBreaks,ctEqualSumOfValues, ctEqualCount n ctUniqueValues

$
0
0
how to get count like this? i use mapwingis 4.9.2

Name | count
317.7k-1.05m | 7
1.05m-1.82m | 7

as in the table listing the color, name, and count of the MapWindow menu (properties-categories). how to get these values of count column?

Created Unassigned: Point symbol to a bold or italic character [26007]

$
0
0
Hi,
AxMap_Deprecated.set_UDPointFontCharFont () is now set as deprecated.
So, the point symbol cannot be set to a bold, italic or underlined character.
Despite that ShapeDrawingOptions.PointCharacter and ShapeDrawingOptions.FontName exist, similar properties for BOLD, ITALIC, UNDERLINED character must exist.
Viewing all 2341 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>