Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
maps
- Page 1
Re: Selling the house that I grew up
Community Center
Geeks' Lounge
2 Months Ago
by Reverend Jim
… or bike along a country path along the [Floodway](https://
maps
.app.goo.gl/PvPJxqNGBEFuTZop7) all the way to Lockport without…
maps
Programming
Web Development
16 Years Ago
by designingamy
Hello all! I have been googling US
maps
using Javascript until I'm blue in the face and still can't find what I'm looking for. I want to learn how to create a US map like the following: [url]http://www.websitedesignerslist.com/[/url] Can anyone point me in the right direction? Thanks bunches, ~Amy
Maps
Programming
Game Development
14 Years Ago
by new2programming
… has already been initialized by its constructor map.loadMap("
maps
/map01.map"); printf("\nhere comes the game loop…
Re: Maps
Programming
Game Development
14 Years Ago
by Hidden_mistakes
[url]http://jnrdev.72dpiarmy.com/[/url] Its the 3rd one- big
maps
and scrolling. Thanks for taking the time to help me out :)
Maps in Joomla?
Programming
Web Development
14 Years Ago
by sapiputih
… reasons, I have been trying the embed the Javascript V3
maps
API call within a joomla article. Please see the unsuccessful… appreciated. Thanks, Mike [CODE] function initialize() { var latlng = new google.
maps
.LatLng(-34.397, 150.644); var myOptions = { zoom: 8, center…
maps.google.com
Programming
Web Development
18 Years Ago
by levisc
… 1.5.0.7, when I load the
maps
.google.com/
maps
web page, the map does not show. If…0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "JS frame :: [url]http://
maps
.google.com/mapfiles/maps2.63.js[/url] :: oa :: line 1172…" data: no] Source File: [url]http://
maps
.google.com/mapfiles/maps2.63.js[/url] Line: 1172 Any…
Re: Maps, can you add values together?
Programming
Software Development
14 Years Ago
by CrazyDieter
Maps
do not sum the values as you add entries, the old value is just replaced by the new one when you call put() for the same key. you'll have to compute the sums by yourself : [CODE] Integer oldWage = propIdValues.get(name); oldWage = oldWage == null ? 0 : oldWage; propIdValues.put(name, oldWage + wage); [/CODE]
Re: maps
Digital Media
UI / UX Design
14 Years Ago
by VulcanDesign
… visitors? Check out these free website visitor
maps
: [URL="http://www.ipligence.com/visitor-
maps
"]http://www.ipligence.com/visitor…-
maps
[/URL] [URL="http://tools.digitalpoint.com/geovisitors…
Re: maps
Digital Media
UI / UX Design
14 Years Ago
by VulcanDesign
Because it is sometimes nice to be able to display something stylish to your visitors, it can greatly improve the look of a site if used correctly. Although the
maps
don't give any information aside from the location of visitors. Google Analytics is great if you actually want detailed information on the site.
Re: maps
Programming
Web Development
16 Years Ago
by designingamy
I found a site that does it for you for a price: [url]http://www.fla-shop.com/us_states/usa_locator.php#[/url] But I'm not just wanting the US, I'm wanting to do counties within a state as well. Can anyone point me in the right direction? Thanks in advance, ~Amy
Re: maps
Programming
Web Development
16 Years Ago
by essential
what do u actually intend to do?
Re: maps
Programming
Web Development
16 Years Ago
by essential
Creating an image map is quite simple! Is this what you need?
Re: maps
Programming
Web Development
16 Years Ago
by designingamy
I know how to create an image map. This is what I'm wanting to learn how to do: [url]http://www.fla-shop.com/[/url] ~Amy
Re: maps
Programming
Web Development
16 Years Ago
by essential
be right back!
Re: maps
Programming
Web Development
16 Years Ago
by essential
Sorry but my browser is incapable to iteract with fla-shop contents! So i have no idea how it actualy works! Unles you'll explain it! So i can write some sample about it...
Re: maps
Programming
Web Development
16 Years Ago
by designingamy
Okay....when you mouseover a state, it lifts and changes colors and is a link to another page. You can also create at small text box that pops up beside it.
Re: maps
Programming
Web Development
16 Years Ago
by essential
It uses an image swap and it goes somethin like this! Just a basic example and this should go inside the head tags! [code=javascript]<script type="text/javascript"> <!-- var _currentEventOn = new Image(); _currentEventOn.src = 'images/someOnImage.gif'; var _currentEventOff = new Image(); _currentEventOff.src = 'images/…
Re: maps
Programming
Web Development
16 Years Ago
by designingamy
Wow! That will be way too much work to take on for me right now! You're talking about not just the 50 states, but the 3140 counties as well! I think I may just buy the program from them! Thanks for your response! ~Amy
Re: Maps
Programming
Game Development
14 Years Ago
by SgtMe
Are you using arrays to make data that you can be turned into a map by your program?
Re: Maps
Programming
Game Development
14 Years Ago
by new2programming
no i don't think so, i was doing a tutorial and it didn't really mention but from what i can see it implements a map file, which is premade. I want to edit this map file but i have no idea how as all it comes up with is a linker address map as the sort of file it is. I have tried editing it in a map editior program but it just comes up blank. Im so…
Re: Maps
Programming
Game Development
14 Years Ago
by SgtMe
It will be much simpler to do it this way: 1. Your map is in a text file and consits of numbers. 2. Your program will load this data into an multi-demisional array. 3. It needs to interpret the numbers as different object. (eg. 0 = nothing, 1 = block) 4. You need to have drawing and updating functions for sprites that you can use each time that…
Re: Maps
Programming
Game Development
14 Years Ago
by Hidden_mistakes
Ok so from what you have said it is dealing with this part in the code- however it only specifies x and y as its numbers. would these numbers be stored in the map file? [CODE]void CMap::loadMap(const char *file){ FILE *mapfile; int i, j, t; mapfile = fopen(file, "rb"); if(tiles) //map has already been initialized freetiles();…
Re: Maps
Programming
Game Development
14 Years Ago
by SgtMe
erm...sorry im not getting your last post? What is the x and y of? or are x and y the values that you will use to make an array for your map?
Re: Maps
Programming
Game Development
14 Years Ago
by Hidden_mistakes
well if you look in the code the array values are not specified they are just x and y, which makes me believe that these coordinates are specified in the map file(linker address map) that i cannot open or view at all. I could be wrong as im not 100% as to what is happening in the code.
Re: Maps
Programming
Game Development
14 Years Ago
by SgtMe
Can you post a link to the tutorial?
Re: Maps
Programming
Game Development
14 Years Ago
by SgtMe
Sorry, but the link wasn't much help. I used to use C++ but I gave it up in favour of python a while ago. I suppose that you could take the base ideas and code from that and add in your own functionality.
Re: Maps
Programming
Game Development
14 Years Ago
by Hidden_mistakes
:( thanks anyways. I really wish i could but ive got a week left to finish the whole game and my tutor didn't bother teaching us any C++ so it really has been a learn what you have to in the time you have class.
Re: Maps
Programming
Game Development
14 Years Ago
by SgtMe
your tutor is harsh
Re: Maps
Programming
Game Development
14 Years Ago
by Hidden_mistakes
i know. Its been really hard. But i guess i will just try and do something else now.
Re: Maps
Programming
Game Development
14 Years Ago
by Sodabread
Have you tried opening the file in a simple text editor (notepad)? If the file itself is in binary and you don't have the map editor the writer used to create it, you may be slightly out of luck. But, lucky for you, you're a programmer. You may want to take this as an opportunity to write your own map class and determine how YOU want it to work, …
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC