Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[疑难] 请教:7号楼店铺插件的地图坐标在哪里改?

[复制链接]
ppluntan 发表于 2009-9-10 16:34:54 | 显示全部楼层 |阅读模式
请教:7号楼店铺插件的地图坐标在哪里改?

安装插件时候有提高改为自己所在坐标,但没有说在哪个文件改?我默认安装后显示的七号楼作者的城市地图
 楼主| ppluntan 发表于 2009-9-10 16:43:34 | 显示全部楼层
有人知道吗?帮我一下
回复

使用道具 举报

king88 发表于 2009-9-10 16:51:18 | 显示全部楼层
地图显示您想要的地方的方法:
首先打开Google地图,在上面寻找一个地址,然后上下左右移动地图,让这个地址正好处于地图的正中心位置,当您想寻找坐标位置已经处于地图的中心位置的时候,拷贝并粘贴以下代码到你的浏览器地址栏:
  javascript:void(prompt('',gApplication.getMap().getCenter()));
然后回车一下。这时,你将得到一个弹出式的坐标,这个坐标就是你需要找的经度和纬度。


1  在admincp.php:
第一处:
$acs = array(
        array('index','config','privacy', 'spam', 'network', 'usergroup', 'credit', 'profilefield', 'profield', 'ad', 'sitefeed', 'userapp', 'app'),
        array('tag', 'mtag', 'space', 'name', 'report'),
        array('cache', 'task', 'censor', 'stat', 'block', 'cron'),
        array('blog','album', 'pic', 'comment', 'thread', 'post', 'doing', 'feed', 'share')
);
修改成(最后一行array('base','pingdao','neirong','shop','reviews','shoptags')为增加的。同时记得在上一行'share')后加个逗号 )
$acs = array(
        array('index','config', 'privacy', 'spam', 'network', 'usergroup', 'credit', 'profilefield', 'profield', 'ad', 'sitefeed', 'userapp', 'app'),
        array('tag', 'mtag', 'space', 'name', 'report'),
        array('cache', 'task', 'censor', 'stat', 'block', 'cron'),
        array('blog', 'album', 'pic', 'comment', 'thread', 'post', 'doing', 'feed', 'share'),
        array('base','pingdao','neirong','shop','reviews','shoptags')
        );


第二处:
for($i=0; $i<5; $i++) {//由原来的3改成现在的5,其他不用修改
                foreach ($acs[$i] as $value) {
                        if($isfounder || $megroup['manage'.$value]) {
                                $menus[$i][$value] = 1;
                                $_SGLOBAL['usergroup'][$_SGLOBAL['member']['groupid']]['manage'.$value] = 1;
                        }
                }
        }

第三处:
if(empty($_GET['ac']) || (!in_array($_GET['ac'], $acs[0]) && !in_array($_GET['ac'], $acs[1]) && !in_array($_GET['ac'], $acs[2]) && !in_array($_GET['ac'], $acs[3]) && !in_array($_GET['ac'], $acs[4]) && !in_array($_GET['ac'], $acs[5]))) {

//加上  && !in_array($_GET['ac'], $acs[4] && !in_array($_GET['ac'], $acs[5]),注意修改完后$acs[5]后面应有三个 ) 符号



3 admin/tpl/header.htm:

<!--{eval
        $_TPL['menunames'] = array(
                'config' => '站点设置',
后加上:
                'base' => '积分与审核',
                'pingdao' => '频道设置',
                'shoptags' => '标签管理',
                'shop' => '商铺管理',
                'neirong' => '点评内容',
                'reviews' => '回应内容',

4 admin/tpl/side.htm开始处加入:

<!--{if $menus[3]}-->
        <div class="block style1">
                <h2>点评系统</h2>
                <ul class="folder">
                <!--{loop $acs[4] $value}-->
                <!--{if $menus[4][$value]}-->
                <!--{if $ac==$value}--><li class="active"><!--{else}--><li><!--{/if}--><a href="admincp.php?ac=$value">{$_TPL[menunames][$value]}</a></li>
                <!--{/if}-->
                <!--{/loop}-->
                </ul>
        </div>
<!--{/if}-->


5 在侧栏增加链接。

template/default/header.htm中找到

<li><img src="image/app/share.gif"><a href="space.php?do=share">分享</a></li>
加上
<li><img src="image/icon/shop.gif"><a href="shop.php">商家点评</a><em><a href="shop.php?ac=new">发布</a></em></li>
更新缓存。

如果安装后出现白屏现象,请重新检查所安装文件是否有语法错误。然后通过删除UCH安装目录下的data/tpl_cache/目录下的文件,此功能相当于更新缓存。



在header.htm相应的位置加上<li><img src="image/icon/shop.gif" alt="商家点评" /><a href="shop.php">商家点评</a></li>

admin/tpl/config.htm
找到<tr>
                <th>未认证实名权限</th>
                <td>
                        <table>
                        <tr>
                        <td width="120">允许加好友</td>
                        <td>
                        <input type="radio" name="config[name_allowfriend]" value="1"<!--{if $configs[name_allowfriend] == 1}--> checked<!--{/if}-->>是
                        <input type="radio" name="config[name_allowfriend]" value="0"<!--{if $configs[name_allowfriend] != '1'}--> checked<!--{/if}-->>否
                        </td></tr>

在其下面添加


                        <tr>
                        <td width="120">允许商铺点评</td>
                        <td>
                        <input type="radio" name="config[name_allowshop]" value="1"<!--{if $configs[name_allowshop] == 1}--> checked<!--{/if}-->>是
                        <input type="radio" name="config[name_allowshop]" value="0"<!--{if $configs[name_allowshop] != '1'}--> checked<!--{/if}-->>否
                        </td></tr>
回复

使用道具 举报

强子arp 发表于 2009-9-10 17:30:05 | 显示全部楼层
楼上正解呀
回复

使用道具 举报

 楼主| ppluntan 发表于 2009-9-10 18:11:20 | 显示全部楼层
拷贝并粘贴以下代码到你的浏览器地址栏:
  javascript:void(prompt('',gApplication.getMap().getCenter()));
然后回车一下。这时,你将得到一个弹出式的坐标,这个坐标就是你需要找的经度和纬度


--------------- 是啊,我得到坐标了呀,下步呢?把坐标放在哪里呢?(说明,该改的文件都改了,没发现在哪里填写得到的坐标)
回复

使用道具 举报

nihaogov1 发表于 2009-9-10 18:23:41 | 显示全部楼层
回复

使用道具 举报

 楼主| ppluntan 发表于 2009-9-10 18:37:40 | 显示全部楼层
楼上的朋友,我本想引用你的帖子,发现引用的时候,里面又外挂一些字,就不再引用了。你说的根本没有解决我的提问呀
回复

使用道具 举报

jaychoufans 发表于 2009-9-10 19:09:08 | 显示全部楼层
收藏中~支持下~
回复

使用道具 举报

强子arp 发表于 2009-9-10 19:12:06 | 显示全部楼层
shop_new.htm

var center = new GLatLng(21.85399074047579, 111.96619749069214);
回复

使用道具 举报

 楼主| ppluntan 发表于 2009-9-10 21:36:49 | 显示全部楼层
谢谢强子ARP
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-17 22:27 , Processed in 0.064417 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表